summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/sortedset/hash_spec.rb
blob: 40676de7fc488295454526e8a3ccb88a279373f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require_relative '../../../spec_helper'

ruby_version_is ""..."3.0" do
  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
end