This commit is contained in:
Hiroshi SHIBATA 2021-07-29 15:52:32 +09:00
Родитель 1e04571da0
Коммит b3413914d9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F9CF13417264FAC2
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -375,7 +375,7 @@ class TC_OpenStruct < Test::Unit::TestCase
o = OpenStruct.new(table: {foo: 42})
assert_equal({foo: 42}, YAML.safe_load(YAML.dump(o), permitted_classes: [Symbol, OpenStruct]).table)
end
end if RUBY_VERSION >= '2.6'
def test_yaml
h = {name: "John Smith", age: 70, pension: 300.42}
@ -386,7 +386,7 @@ class TC_OpenStruct < Test::Unit::TestCase
assert_equal os1, os2
assert_equal true, os1.eql?(os2)
assert_equal 300.42, os2.pension
end
end if RUBY_VERSION >= '2.6'
def test_marshal
o = OpenStruct.new(name: "John Smith", age: 70, pension: 300.42)