From 052f204dcbb3d02509a47e8bd559a444a3f81160 Mon Sep 17 00:00:00 2001 From: tenderlove Date: Fri, 9 Apr 2010 16:09:55 +0000 Subject: * ext/psych/parser.c: parse raises a TypeError when nil is passed in. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27278 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/psych/test_psych.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test/psych/test_psych.rb') diff --git a/test/psych/test_psych.rb b/test/psych/test_psych.rb index 22baa1489e..91c67b1664 100644 --- a/test/psych/test_psych.rb +++ b/test/psych/test_psych.rb @@ -4,6 +4,12 @@ require 'stringio' require 'tempfile' class TestPsych < Psych::TestCase + def test_load_argument_error + assert_raises(TypeError) do + Psych.load nil + end + end + def test_dump_stream things = [22, "foo \n", {}] stream = Psych.dump_stream(*things) -- cgit v1.2.3