From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/test/psych/test_null.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 jni/ruby/test/psych/test_null.rb (limited to 'jni/ruby/test/psych/test_null.rb') diff --git a/jni/ruby/test/psych/test_null.rb b/jni/ruby/test/psych/test_null.rb new file mode 100644 index 0000000..1725550 --- /dev/null +++ b/jni/ruby/test/psych/test_null.rb @@ -0,0 +1,19 @@ +require_relative 'helper' + +module Psych + ### + # Test null from YAML spec: + # http://yaml.org/type/null.html + class TestNull < TestCase + def test_null_list + assert_equal [nil] * 5, Psych.load(<<-eoyml) +--- +- ~ +- null +- +- Null +- NULL + eoyml + end + end +end -- cgit v1.2.3