diff options
Diffstat (limited to 'test/syck/test_null.rb')
-rw-r--r-- | test/syck/test_null.rb | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/syck/test_null.rb b/test/syck/test_null.rb deleted file mode 100644 index 8bd710fe5e..0000000000 --- a/test/syck/test_null.rb +++ /dev/null @@ -1,20 +0,0 @@ -require 'test/unit' -require 'yaml' - -module Syck - ### - # Test null from YAML spec: - # http://yaml.org/type/null.html - class TestNull < Test::Unit::TestCase - def test_null_list - assert_equal [nil] * 5, YAML.load(<<-eoyml) ---- -- ~ -- null -- -- Null -- NULL - eoyml - end - end -end |