diff options
| author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-07-10 05:51:28 +0000 |
|---|---|---|
| committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-07-10 05:51:28 +0000 |
| commit | 72fb77606d82cfb43ee28492fd7469af0dc62634 (patch) | |
| tree | 1fd028ae62684dcaa343176edc5178c7510765ee /test/ruby | |
| parent | e267247d87c18ae29167964c214cdbe395707a80 (diff) | |
| download | ruby-72fb77606d82cfb43ee28492fd7469af0dc62634.tar.gz ruby-72fb77606d82cfb43ee28492fd7469af0dc62634.tar.xz ruby-72fb77606d82cfb43ee28492fd7469af0dc62634.zip | |
Add test for marshaling regexp.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24016 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/marshaltestlib.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ruby/marshaltestlib.rb b/test/ruby/marshaltestlib.rb index 5da7ad95d..8c55a086a 100644 --- a/test/ruby/marshaltestlib.rb +++ b/test/ruby/marshaltestlib.rb @@ -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 |
