Sha256: d0de184f26f8b6d6449f05a5bceebee2c47f3c8b045fc23ea1da4a64349a6054

Contents?: true

Size: 771 Bytes

Versions: 6

Compression:

Stored size: 771 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')

require 'hamster/list'

describe Hamster::List do

  describe "#product" 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.product }.should_not raise_error
      end

    end

    [
      [[], 1],
      [[2], 2],
      [[1, 3, 5, 7, 11], 1155],
    ].each do |values, expected|

      describe "on #{values.inspect}" do

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

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

      end

    end

  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
hamster-0.2.5 spec/hamster/list/product_spec.rb
hamster-0.2.4 spec/hamster/list/product_spec.rb
hamster-0.2.3 spec/hamster/list/product_spec.rb
hamster-0.2.2 spec/hamster/list/product_spec.rb
hamster-0.2.1 spec/hamster/list/product_spec.rb
hamster-0.2.0 spec/hamster/list/product_spec.rb