File: any_spec.rb

package info (click to toggle)
ruby-immutable-ruby 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,852 kB
  • sloc: ruby: 16,556; makefile: 4
file content (53 lines) | stat: -rw-r--r-- 1,411 bytes parent folder | download
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
require 'spec_helper'

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

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

    context 'when not empty' do
      let(:hash) { H['A' => 'aye', 'B' => 'bee', 'C' => 'see', nil => 'NIL'] }

      context 'with a block' do
        [
          %w[A aye],
          %w[B bee],
          %w[C see],
          [nil, 'NIL'],
        ].each do |pair|

          it "returns true if the block ever returns true (#{pair.inspect})" do
            hash.any? { |key, value| key == pair.first && value == pair.last }.should == true
          end

          it 'returns false if the block always returns false' do
            hash.any? { |key, value| key == 'D' && value == 'dee' }.should == false
          end
        end

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

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

      context 'with no block' do
        it 'returns true' do
          hash.any?.should == true
        end
      end
    end
  end
end