Sha256: 57a9dd168aec105e3282693eec06db2323181807b1b1ef6e48ae9e4574f90c47

Contents?: true

Size: 1.07 KB

Versions: 7

Compression:

Stored size: 1.07 KB

Contents

require 'spec_helper'

require 'hamster/list'

describe Hamster::List do

  describe "#count" do

    describe "on a really big list" do

      before do
        @list = Hamster.interval(0, STACK_OVERFLOW_DEPTH)
      end

      it "doesn't run out of stack" do
        lambda { @list.count }.should_not raise_error
      end

    end

    [
      [[], 0],
      [[1], 1],
      [[1, 2], 1],
      [[1, 2, 3], 2],
      [[1, 2, 3, 4], 2],
      [[1, 2, 3, 4, 5], 3],
    ].each do |values, expected|

      describe "on #{values.inspect}" do

        before do
          @original = Hamster.list(*values)
        end

        describe "with a block" do

          before do
            @result = @original.count(&:odd?)
          end

          it "returns #{expected.inspect}" do
            @result.should == expected
          end

        end

        describe "without a block" do

          before do
            @result = @original.count
          end

          it "returns length" do
            @result.should == @original.length
          end

        end

      end

    end

  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hamster-0.4.3 spec/hamster/list/count_spec.rb
hamster-0.4.2 spec/hamster/list/count_spec.rb
hamster-0.4.0 spec/hamster/list/count_spec.rb
hamster-0.3.10 spec/hamster/list/count_spec.rb
hamster-0.3.9 spec/hamster/list/count_spec.rb
hamster-0.3.8 spec/hamster/list/count_spec.rb
hamster-0.3.7 spec/hamster/list/count_spec.rb