Sha256: 702631e718c5fafa0f10656f0d0099d43a2d017dd0997a73a40b99d3a2ead22c

Contents?: true

Size: 1.21 KB

Versions: 3

Compression:

Stored size: 1.21 KB

Contents

require 'spec_helper'

describe Mutant::Matcher::Namespace, '#each' do
  subject { object.each { |item| yields << item } }

  let(:yields) { []                                    }
  let(:object) { described_class.new(TestApp::Literal) }

  let(:singleton_a) { mock('SingletonA', :name => 'TestApp::Literal') }
  let(:singleton_b) { mock('SingletonB', :name => 'TestApp::Foo')     }
  let(:subject_a)   { mock('SubjectA')                                }
  let(:subject_b)   { mock('SubjectB')                                }

  before do
    Mutant::Matcher::Methods::Singleton.stub(:each).with(singleton_a).and_yield(subject_a)
    Mutant::Matcher::Methods::Instance.stub(:each).with(singleton_a).and_yield(subject_b)
    ObjectSpace.stub(:each_object => [singleton_a, singleton_b])
  end

  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

  it 'should yield subjects' do
    expect { subject }.to change { yields }.from([]).to([subject_a, subject_b])
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mutant-0.3.0.beta4 spec/unit/mutant/matcher/namespace/each_spec.rb
mutant-0.3.0.beta3 spec/unit/mutant/matcher/namespace/each_spec.rb
mutant-0.3.0.beta2 spec/unit/mutant/matcher/namespace/each_spec.rb