Sha256: b85b076c940c98c4674c533415cd0ffee5d069ad3e7e288c1a5450ecbf45e615

Contents?: true

Size: 880 Bytes

Versions: 7

Compression:

Stored size: 880 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Mutant::Loader::Eval, '.call' do

  subject { object.call(node, mutation_subject) }

  let(:object) { described_class }
  let(:path)   { __FILE__        }
  let(:line)   { 1               }

  let(:mutation_subject) do
    double('Subject', source_path: path, source_line: line)
  end

  let(:source) do
    <<-RUBY
      class SomeNamespace
        class Bar
          def some_method
          end
        end

        class SomeOther
          class Foo < Bar
          end
        end
      end
    RUBY
  end

  let(:node) do
    parse(source)
  end

  it 'should load nodes into vm' do
    subject
    ::SomeNamespace::SomeOther::Foo
  end

  it 'should set file and line correctly' do
    subject
    expect(::SomeNamespace::Bar
      .instance_method(:some_method)
      .source_location).to eql([__FILE__, 3])
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
mutant-0.5.6 spec/unit/mutant/loader/eval_spec.rb
mutant-0.5.5 spec/unit/mutant/loader/eval_spec.rb
mutant-0.5.4 spec/unit/mutant/loader/eval_spec.rb
mutant-0.5.3 spec/unit/mutant/loader/eval_spec.rb
mutant-0.5.2 spec/unit/mutant/loader/eval_spec.rb
mutant-0.5.1 spec/unit/mutant/loader/eval_spec.rb
mutant-0.5.0 spec/unit/mutant/loader/eval_spec.rb