Mark rspec2 or rbx spec bug as pending under rbx

This commit is contained in:
Markus Schirp 2012-12-12 22:44:58 +01:00
parent 93556763dd
commit b85c9b6f3b

View file

@ -24,8 +24,12 @@ describe Mutant::Matcher::Chain, '#each' do
it { should be_instance_of(to_enum.class) }
it 'yields the expected values' do
subject.to_a.should eql(object.to_a)
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