require 'spec_helper'

describe Immutable::Set do
  describe '#any?' do
    context 'when empty' do
      it 'with a block returns false' do
        S.empty.any? {}.should == false
      end

      it 'with no block returns false' do
        S.empty.any?.should == false
      end
    end

    context 'when not empty' do
      context 'with a block' do
        let(:set) { S['A', 'B', 'C', nil] }

        ['A', 'B', 'C', nil].each do |value|
          it "returns true if the block ever returns true (#{value.inspect})" do
            set.any? { |item| item == value }.should == true
          end
        end

        it 'returns false if the block always returns false' do
          set.any? { |item| item == 'D' }.should == false
        end

        it 'propagates exceptions raised in the block' do
          -> { set.any? { |k,v| raise 'help' } }.should raise_error(RuntimeError)
        end

        it 'stops iterating as soon as the block returns true' do
          yielded = []
          set.any? { |k,v| yielded << k; true }
          yielded.size.should == 1
        end
      end

      context 'with no block' do
        it 'returns true if any value is truthy' do
          S[nil, false, true, 'A'].any?.should == true
        end

        it 'returns false if all values are falsey' do
          S[nil, false].any?.should == false
        end
      end
    end
  end
end
