Sha256: 8744f7f1d3af7e5245d6840ae9f7ccf6aea55fa4f36f97996c3e41734db4973b

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

require "spec_helper"

require "hamster/hash"

describe Hamster::Hash do

  [:all?, :forall?].each do |method|

    describe "##{method}" do

      describe "when empty" do

        before do
          @hash = Hamster.hash
        end

        it "with a block returns true" do
          @hash.send(method) {}.should == true
        end

        it "with no block returns true" do
          @hash.send(method).should == true
        end

      end

      describe "when not empty" do

        before do
          @hash = Hamster.hash("A" => "aye", "B" => "bee", "C" => "see")
        end

        describe "with a block" do

          it "returns true if the block always returns true" do
            @hash.send(method) { |key, value| true }.should == true
          end

          it "returns false if the block ever returns false" do
            @hash.send(method) { |key, value| key == "D" || value == "dee" }.should == false
          end

        end

        describe "with no block" do

          it "returns true" do
            @hash.send(method).should == true
          end

        end

      end

    end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hamster-1.0.1.pre.rc.1 spec/hamster/hash/all_spec.rb