summaryrefslogtreecommitdiff
path: root/spec/ruby/library/matrix/hash_spec.rb
blob: fac9a065270678abec09c19689132bb6b5d9c0df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require_relative '../../spec_helper'
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