diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_psych.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_psych.rb b/test/test_psych.rb index 865024f..96d0f69 100644 --- a/test/test_psych.rb +++ b/test/test_psych.rb @@ -2,9 +2,9 @@ require 'minitest/autorun' require 'psych' class TestPsych < MiniTest::Unit::TestCase - #def test_simple - # assert_equal 'foo', Psych.parse("--- foo\n") - #end + def test_simple + assert_equal 'foo', Psych.load("--- foo\n") + end def test_libyaml_version assert Psych.libyaml_version |