remove duplicate definition warnings

This commit is contained in:
Keenan Brock 2015-04-25 22:15:54 -04:00
parent f491fde1df
commit bb3637b24e
3 changed files with 1 additions and 4 deletions

View file

@ -19,7 +19,6 @@ RSpec.describe Mutant::Env do
)
end
let(:isolation) { Mutant::Isolation::None }
let(:integration) { double('Integration') }
let(:isolation) { double('Isolation') }
let(:mutation) { Mutant::Mutation::Evil.new(mutation_subject, Mutant::AST::Nodes::N_NIL) }

View file

@ -2,7 +2,7 @@ RSpec.describe Mutant::Loader::Eval, '.call' do
subject { object.call(node, mutation_subject) }
let(:object) { described_class }
let(:object) { Class.new(described_class) }
let(:path) { __FILE__ }
let(:line) { 1 }

View file

@ -29,8 +29,6 @@ RSpec.describe Mutant::Parallel::Worker do
context 'when receving :job command' do
let(:test_result) { double('Test Result') }
before do
expect(processor).to receive(:call).with(payload).and_return(result_payload)