Sha256: 4d4e8a9db39df75e9f4323410927e53250ba0f70354dc73748d5b89730ffa68a

Contents?: true

Size: 1.19 KB

Versions: 4

Compression:

Stored size: 1.19 KB

Contents

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

require 'hamster/tuple'
require 'hamster/list'

describe Hamster::List do

  describe "#split_at" do

    it "is lazy" do
      lambda { Hamster.stream { fail }.split_at(1) }.should_not raise_error
    end

    [
      [[], [], []],
      [[1], [1], []],
      [[1, 2], [1, 2], []],
      [[1, 2, 3], [1, 2], [3]],
      [[1, 2, 3, 4], [1, 2], [3, 4]],
    ].each do |values, expected_prefix, expected_remainder|

      describe "on #{values.inspect}" do

        before do
          @original = Hamster.list(*values)
          @result = @original.split_at(2)
          @prefix = @result.first
          @remainder = @result.last
        end

        it "preserves the original" do
          @original.should == Hamster.list(*values)
        end

        it "returns a tuple with two items" do
          @result.is_a?(Hamster::Tuple).should == true
        end

        it "correctly identifies the matches" do
          @prefix.should == Hamster.list(*expected_prefix)
        end

        it "correctly identifies the remainder" do
          @remainder.should == Hamster.list(*expected_remainder)
        end

      end

    end

  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
hamster-0.2.5 spec/hamster/list/split_at_spec.rb
hamster-0.2.4 spec/hamster/list/split_at_spec.rb
hamster-0.2.3 spec/hamster/list/split_at_spec.rb
hamster-0.2.2 spec/hamster/list/split_at_spec.rb