Sha256: ba7a9ca32bc8c4212c329f184e96e70c17fe8f0dff713b45fb2721516f16c463
Contents?: true
Size: 1.05 KB
Versions: 8
Compression:
Stored size: 1.05 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Mutant::Matcher::Chain, '#each' do subject { object.each { |entry| yields << entry } } let(:object) { described_class.new(matchers) } let(:matchers) { [matcher_a, matcher_b] } let(:matcher_a) { double('Matcher A') } let(:matcher_b) { double('Matcher B') } let(:subject_a) { double('Subject A') } let(:subject_b) { double('Subject B') } before do matcher_a.stub(:each).and_yield(subject_a).and_return(matcher_a) matcher_b.stub(:each).and_yield(subject_b).and_return(matcher_b) end # it_should_behave_like 'an #each method' context 'with no block' do subject { object.each } it { should be_instance_of(to_enum.class) } if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx' pending 'FIX RBX rspec? BUG HERE' else it 'yields the expected values' do subject.to_a.should eql(object.to_a) end end end let(:yields) { [] } it 'should yield subjects' do expect { subject }.to change { yields }.from([]).to([subject_a, subject_b]) end end
Version data entries
8 entries across 8 versions & 1 rubygems