aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/set/sortedset/hash_spec.rb
blob: 176cb7e8dc7417850ce7bdab9ff2d513a1b28b55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require File.expand_path('../../../../spec_helper', __FILE__)
require 'set'

describe "SortedSet#hash" do
  it "is static" do
    SortedSet[].hash.should == SortedSet[].hash
    SortedSet[1, 2, 3].hash.should == SortedSet[1, 2, 3].hash
    SortedSet["a", "b", "c"].hash.should == SortedSet["c", "b", "a"].hash

    SortedSet[].hash.should_not == SortedSet[1, 2, 3].hash
    SortedSet[1, 2, 3].hash.should_not == SortedSet["a", "b", "c"].hash
  end
end