Sha256: 511b0f6e5271aa197ca7d53757e8de8d7ef4bd8a61ea838898d59b8b5369d15b

Contents?: true

Size: 822 Bytes

Versions: 12

Compression:

Stored size: 822 Bytes

Contents

require File.expand_path('../../../spec_helper', __FILE__)

require 'hamster/list'

describe Hamster::List do

  [:head, :first].each do |method|

    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.filter(&:nil?).head }.should_not raise_error
      end

    end

    describe "##{method}" do

      [
        [[], nil],
        [["A"], "A"],
        [["A", "B", "C"], "A"],
      ].each do |values, expected|

        describe "on #{values.inspect}" do

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

          it "returns #{expected.inspect}" do
            @list.send(method).should == expected
          end

        end

      end

    end

  end

end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
hamster-0.3.6 spec/hamster/list/head_spec.rb
hamster-0.3.5 spec/hamster/list/head_spec.rb
hamster-0.3.4 spec/hamster/list/head_spec.rb
hamster-0.3.3 spec/hamster/list/head_spec.rb
hamster-0.3.2 spec/hamster/list/head_spec.rb
hamster-0.3.1 spec/hamster/list/head_spec.rb
hamster-0.3.0 spec/hamster/list/head_spec.rb
hamster-0.2.13 spec/hamster/list/head_spec.rb
hamster-0.2.12 spec/hamster/list/head_spec.rb
hamster-0.2.11 spec/hamster/list/head_spec.rb
hamster-0.2.9 spec/hamster/list/head_spec.rb
hamster-0.2.8 spec/hamster/list/head_spec.rb