summaryrefslogtreecommitdiff
path: root/test/psych/test_psych.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/psych/test_psych.rb')
-rw-r--r--test/psych/test_psych.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/psych/test_psych.rb b/test/psych/test_psych.rb
index ff5ffbafc6..82906f0af6 100644
--- a/test/psych/test_psych.rb
+++ b/test/psych/test_psych.rb
@@ -184,20 +184,20 @@ class TestPsych < Psych::TestCase
end
def test_symbolize_names
- result = Psych.load(<<-eoyml)
+ yaml = <<-eoyml
foo:
bar: baz
hoge:
- fuga: piyo
eoyml
+
+ result = Psych.load(yaml)
assert_equal result, { "foo" => { "bar" => "baz"}, "hoge" => [{ "fuga" => "piyo" }] }
- result = Psych.load(<<-eoyml, symbolize_names: true)
-foo:
- bar: baz
-hoge:
- - fuga: piyo
- eoyml
+ result = Psych.load(yaml, symbolize_names: true)
+ assert_equal result, { foo: { bar: "baz" }, hoge: [{ fuga: "piyo" }] }
+
+ result = Psych.safe_load(yaml, symbolize_names: true)
assert_equal result, { foo: { bar: "baz" }, hoge: [{ fuga: "piyo" }] }
end
end