34 lines
991 B
Ruby
34 lines
991 B
Ruby
|
RSpec.describe Mutant::Matcher::Scope, '#call' do
|
||
|
let(:scope) { TestApp }
|
||
|
let(:object) { described_class.new(scope) }
|
||
|
let(:env) { instance_double(Mutant::Env) }
|
||
|
let(:matcher_a) { instance_double(Mutant::Matcher) }
|
||
|
let(:matcher_b) { instance_double(Mutant::Matcher) }
|
||
|
let(:subject_a) { instance_double(Mutant::Subject) }
|
||
|
let(:subject_b) { instance_double(Mutant::Subject) }
|
||
|
|
||
|
subject { object.call(env) }
|
||
|
|
||
|
before do
|
||
|
expect(Mutant::Matcher::Methods::Singleton).to receive(:new)
|
||
|
.with(scope)
|
||
|
.and_return(matcher_a)
|
||
|
|
||
|
expect(Mutant::Matcher::Methods::Instance).to receive(:new)
|
||
|
.with(scope)
|
||
|
.and_return(matcher_b)
|
||
|
|
||
|
expect(matcher_a).to receive(:call)
|
||
|
.with(env)
|
||
|
.and_return([subject_a])
|
||
|
|
||
|
expect(matcher_b).to receive(:call)
|
||
|
.with(env)
|
||
|
.and_return([subject_b])
|
||
|
end
|
||
|
|
||
|
it 'concatenates subjects from matched singleton and instance methods' do
|
||
|
should eql([subject_a, subject_b])
|
||
|
end
|
||
|
end
|