summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/matrix/hash_spec.rb
blob: b2e5b579b785a2aea5a20815794d7f026bce138b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require File.expand_path('../../../spec_helper', __FILE__)
require 'matrix'

describe "Matrix#hash" do

  it "returns a Fixnum" do
    Matrix[ [1,2] ].hash.should be_an_instance_of(Fixnum)
  end

  it "returns the same value for the same matrix" do
    data = [ [40,5], [2,7] ]
    Matrix[ *data ].hash.should == Matrix[ *data ].hash
  end

end