summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-01 02:32:24 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-01 02:32:24 +0000
commitc8742da818dd754b64a8ee45723ec892a53dc1ac (patch)
tree4af9af0c8aac22439af4e84a6ae727e13ab276cf /test
parent975321b645f173f8b28fc3b8dd5d508521c64684 (diff)
downloadruby-c8742da818dd754b64a8ee45723ec892a53dc1ac.tar.gz
ruby-c8742da818dd754b64a8ee45723ec892a53dc1ac.tar.xz
ruby-c8742da818dd754b64a8ee45723ec892a53dc1ac.zip
* test/ruby/test_marshal.rb (TestMarshal#test_limit): test for
[ruby-core:24100]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23919 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_marshal.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_marshal.rb b/test/ruby/test_marshal.rb
index af389d2b2..268acf2a3 100644
--- a/test/ruby/test_marshal.rb
+++ b/test/ruby/test_marshal.rb
@@ -116,6 +116,7 @@ class TestMarshal < Test::Unit::TestCase
def test_limit
assert_equal([[[]]], Marshal.load(Marshal.dump([[[]]], 3)))
assert_raise(ArgumentError) { Marshal.dump([[[]]], 2) }
+ assert_nothing_raised(ArgumentError, '[ruby-core:24100]') { Marshal.dump("\u3042", 1) }
end
def test_userdef_invalid