ruby--ruby/test/psych/test_nil.rb

20 lines
386 B
Ruby

# frozen_string_literal: true
require_relative 'helper'
module Psych
class TestNil < TestCase
def test_nil
yml = Psych.dump nil
assert_match(/---[ ]?\n(?:\.\.\.\n)?/, yml)
assert_nil Psych.load(yml)
end
def test_array_nil
yml = Psych.dump [nil]
assert_match(/---\n-[ ]?\n/, yml)
assert_equal [nil], Psych.load(yml)
end
end
end