remove duplicate definition warnings
This commit is contained in:
parent
f491fde1df
commit
bb3637b24e
3 changed files with 1 additions and 4 deletions
|
@ -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) }
|
||||
|
|
|
@ -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 }
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue