1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
require 'spec_helper'
describe Immutable::SortedSet do
describe '#take_while' do
[
[[], []],
[['A'], ['A']],
[%w[A B C], %w[A B]],
].each do |values, expected|
context "on #{values.inspect}" do
let(:sorted_set) { SS[*values] }
context 'with a block' do
it "returns #{expected.inspect}" do
sorted_set.take_while { |item| item < 'C' }.should eql(SS[*expected])
end
it 'preserves the original' do
sorted_set.take_while { |item| item < 'C' }
sorted_set.should eql(SS[*values])
end
end
context 'without a block' do
it 'returns an Enumerator' do
sorted_set.take_while.class.should be(Enumerator)
sorted_set.take_while.each { |item| item < 'C' }.should eql(SS[*expected])
end
end
end
end
end
end
|