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

19 lines
344 B
Ruby
Raw Normal View History

require 'psych/helper'
module Psych
class TestNil < TestCase
def test_nil
yml = Psych.dump nil
assert_equal "--- \n...\n", yml
assert_equal nil, Psych.load(yml)
end
def test_array_nil
yml = Psych.dump [nil]
assert_equal "---\n- \n", yml
assert_equal [nil], Psych.load(yml)
end
end
end