Sha256: c76ab8ab13a5cec41473a667dced45a12b786279b6237912f317193bf8d8ae0f

Contents?: true

Size: 1.02 KB

Versions: 13

Compression:

Stored size: 1.02 KB

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) }

    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

13 entries across 13 versions & 1 rubygems

Version Path
mutant-0.2.20 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.17 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.16 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.15 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.14 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.13 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.12 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.11 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.9 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.8 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.7 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.6 spec/unit/mutant/matcher/chain/each_spec.rb
mutant-0.2.5 spec/unit/mutant/matcher/chain/each_spec.rb