1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

SortedSet was removed at a3db08d7b6

This commit is contained in:
Hiroshi SHIBATA 2020-12-04 19:34:06 +09:00
parent 1804c3368c
commit b06ffce4ae
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
53 changed files with 0 additions and 943 deletions

View file

@ -195,9 +195,5 @@ class JSONAdditionTest < Test::Unit::TestCase
def test_set
s = Set.new([:a, :b, :c, :a])
assert_equal s, JSON.parse(JSON(s), :create_additions => true)
ss = SortedSet.new([:d, :b, :a, :c])
ss_again = JSON.parse(JSON(ss), :create_additions => true)
assert_kind_of ss.class, ss_again
assert_equal ss, ss_again
end
end