1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Add test for marshaling regexp.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24016 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2009-07-10 05:51:28 +00:00
parent 143d1d840d
commit 5e2a28d13d

View file

@ -1,3 +1,4 @@
# coding: utf-8
module MarshalTestLib
# include this module to a Test::Unit::TestCase and definde encode(o) and
# decode(s) methods. e.g.
@ -245,6 +246,12 @@ module MarshalTestLib
marshal_equal(/a/)
marshal_equal(/A/i)
marshal_equal(/A/mx)
marshal_equal(/a\u3042/)
marshal_equal(/aあ/)
assert_equal(Regexp.new("".force_encoding("ASCII-8BIT")),
Marshal.load("\004\b/\b\343\201\202\000"))
assert_equal(/au3042/, Marshal.load("\004\b/\fa\\u3042\000"))
#assert_equal(/au3042/u, Marshal.load("\004\b/\fa\\u3042@")) # spec
end
def test_regexp_subclass