Sha256: c00ee87103fd0fdf9a5390502f657a9fb927e7de12b1f4e41031039e670b8145

Contents?: true

Size: 931 Bytes

Versions: 5

Compression:

Stored size: 931 Bytes

Contents

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) { mock('Matcher A') }
  let(:matcher_b) { mock('Matcher B') }

  let(:subject_a) { mock('Subject A') }
  let(:subject_b) { mock('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) }

    it 'yields the expected values' do
      subject.to_a.should eql(object.to_a)
    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

5 entries across 5 versions & 1 rubygems

Version Path
mutant-0.2.4 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.3 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.2 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.1 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.0 spec/unit/mutant/matcher/chain/each_spec.rb