Sha256: 48f20a88d2d9b9f35e52fcff1c743341d4fbbfc46e57678cbef0848c331589ba

Contents?: true

Size: 1022 Bytes

Versions: 8

Compression:

Stored size: 1022 Bytes

Contents

require File.dirname(__FILE__) + '/spec_helper'

describe YARD::Handlers::Processor do
  before do
    @proc = Handlers::Processor.new(OpenStruct.new(:parser_type => :ruby))
  end

  it "starts with public visibility" do
    expect(@proc.visibility).to eq :public
  end

  it "starts in instance scope" do
    expect(@proc.scope).to eq :instance
  end

  it "starts in root namespace" do
    expect(@proc.namespace).to eq Registry.root
  end

  it "has a globals structure" do
    expect(@proc.globals).to be_a(OpenStruct)
  end

  it "ignores HandlerAborted exceptions (but print debug info)" do
    class AbortHandlerProcessor < YARD::Handlers::Ruby::Base
      process { abort! }
    end
    stmt = OpenStruct.new(:line => 1, :show => 'SOURCE')
    allow(@proc).to receive(:find_handlers).and_return([AbortHandlerProcessor])
    expect(log).to receive(:debug).with(/AbortHandlerProcessor cancelled from/)
    expect(log).to receive(:debug).with("\tin file '(stdin)':1:\n\nSOURCE\n")
    @proc.process([stmt])
  end
end

Version data entries

8 entries across 7 versions & 2 rubygems

Version Path
abaci-0.3.0 vendor/bundle/gems/yard-0.9.2/spec/handlers/processor_spec.rb
abaci-0.3.0 vendor/bundle/gems/yard-0.9.1/spec/handlers/processor_spec.rb
yard-0.9.5 spec/handlers/processor_spec.rb
yard-0.9.4 spec/handlers/processor_spec.rb
yard-0.9.3 spec/handlers/processor_spec.rb
yard-0.9.2 spec/handlers/processor_spec.rb
yard-0.9.1 spec/handlers/processor_spec.rb
yard-0.9.0 spec/handlers/processor_spec.rb