diff options
author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-17 14:28:34 +0000 |
---|---|---|
committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-17 14:28:34 +0000 |
commit | 9b7b1478da9d4f7f568599ed141e53dcbe1234f6 (patch) | |
tree | e7993bc03ced2a5918ed8d3a13a9c7380a9a7771 /test/ruby/test_marshal.rb | |
parent | d7dcc9a3126096dfc4d7bb8692f3f386bd6cd43b (diff) | |
download | ruby-9b7b1478da9d4f7f568599ed141e53dcbe1234f6.tar.gz ruby-9b7b1478da9d4f7f568599ed141e53dcbe1234f6.tar.xz ruby-9b7b1478da9d4f7f568599ed141e53dcbe1234f6.zip |
* test/soap/marshal/test_marshal.rb, test/ruby/test_marshal.rb: do $:
trick to share the testcase test/ruby/marshaltestlib.rb.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5753 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_marshal.rb')
-rw-r--r-- | test/ruby/test_marshal.rb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/ruby/test_marshal.rb b/test/ruby/test_marshal.rb index 3bd2cc08f..2008e3f36 100644 --- a/test/ruby/test_marshal.rb +++ b/test/ruby/test_marshal.rb @@ -1,5 +1,12 @@ require 'test/unit' -require File.join(File.dirname(File.expand_path(__FILE__)), 'marshaltestlib') +dir = File.dirname(File.expand_path(__FILE__)) +orgpath = $:.dup +begin + $:.push(dir) + require 'marshaltestlib' +ensure + $:.replace(orgpath) +end $KCODE = 'none' |