summaryrefslogtreecommitdiff
path: root/test/ostruct
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2021-05-17 11:36:16 +0900
committerYusuke Endoh <mame@ruby-lang.org>2021-05-17 11:36:16 +0900
commitda5b28396397ace84d914cb188055cbeb46b8725 (patch)
treee7e1fb30d29827e1ddf4d116086d335883b114ec /test/ostruct
parent42b20bdbfe770053e02948e9577bdd412a8c98cf (diff)
test/ostruct/test_ostruct.rb: Use YAML.unsafe_load instead of YAML.load
Follow-up of fbb4e3f96c10de2240f2d87eac19cf6f62f65fea
Diffstat (limited to 'test/ostruct')
-rw-r--r--test/ostruct/test_ostruct.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ostruct/test_ostruct.rb b/test/ostruct/test_ostruct.rb
index ba6b701298..7773da46af 100644
--- a/test/ostruct/test_ostruct.rb
+++ b/test/ostruct/test_ostruct.rb
@@ -357,18 +357,18 @@ class TC_OpenStruct < Test::Unit::TestCase
def test_legacy_yaml
s = "--- !ruby/object:OpenStruct\ntable:\n :foo: 42\n"
- o = YAML.load(s)
+ o = YAML.unsafe_load(s)
assert_equal(42, o.foo)
o = OpenStruct.new(table: {foo: 42})
- assert_equal({foo: 42}, YAML.load(YAML.dump(o)).table)
+ assert_equal({foo: 42}, YAML.unsafe_load(YAML.dump(o)).table)
end
def test_yaml
h = {name: "John Smith", age: 70, pension: 300.42}
yaml = "--- !ruby/object:OpenStruct\nname: John Smith\nage: 70\npension: 300.42\n"
os1 = OpenStruct.new(h)
- os2 = YAML.load(os1.to_yaml)
+ os2 = YAML.unsafe_load(os1.to_yaml)
assert_equal yaml, os1.to_yaml
assert_equal os1, os2
assert_equal true, os1.eql?(os2)