Add specification for null matcher
This commit is contained in:
parent
de6509c785
commit
8f1b72fb3a
2 changed files with 26 additions and 1 deletions
|
@ -27,7 +27,6 @@ describe Mutant::Matcher::Chain do
|
|||
end
|
||||
end
|
||||
|
||||
|
||||
it 'should yield subjects' do
|
||||
expect { subject }.to change { yields }.from([]).to([subject_a, subject_b])
|
||||
end
|
||||
|
|
26
spec/unit/mutant/matcher/null_spec.rb
Normal file
26
spec/unit/mutant/matcher/null_spec.rb
Normal file
|
@ -0,0 +1,26 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe Mutant::Matcher::Null do
|
||||
let(:object) { described_class.new }
|
||||
|
||||
describe '#each' do
|
||||
let(:yields) { [] }
|
||||
|
||||
subject { object.each { |entry| yields << entry } }
|
||||
|
||||
# it_should_behave_like 'an #each method'
|
||||
context 'with no block' do
|
||||
subject { object.each }
|
||||
|
||||
it { should be_instance_of(to_enum.class) }
|
||||
|
||||
it 'yields the expected values' do
|
||||
expect(subject.to_a).to eql(object.to_a)
|
||||
end
|
||||
end
|
||||
|
||||
it 'should yield subjects' do
|
||||
expect { subject }.not_to change { yields }.from([])
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue