diff options
author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-29 13:22:27 +0000 |
---|---|---|
committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-29 13:22:27 +0000 |
commit | 0bf1f4de232a7cf8d7aa7107249de7b840a6e112 (patch) | |
tree | ce69b78b4e739fd0cdf71a86488af67114021a93 /test/ruby | |
parent | 47dead756b863b44273345525935c87cb99cf452 (diff) | |
download | ruby-0bf1f4de232a7cf8d7aa7107249de7b840a6e112.tar.gz ruby-0bf1f4de232a7cf8d7aa7107249de7b840a6e112.tar.xz ruby-0bf1f4de232a7cf8d7aa7107249de7b840a6e112.zip |
* test/*: remove $: trick. [ruby-dev:22763] use test/runner.rb to
run test.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5580 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r-- | test/ruby/test_beginendblock.rb | 1 | ||||
-rw-r--r-- | test/ruby/test_file.rb | 1 | ||||
-rw-r--r-- | test/ruby/test_pipe.rb | 1 | ||||
-rw-r--r-- | test/ruby/test_system.rb | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/test/ruby/test_beginendblock.rb b/test/ruby/test_beginendblock.rb index b56b596a6..a8e5913b1 100644 --- a/test/ruby/test_beginendblock.rb +++ b/test/ruby/test_beginendblock.rb @@ -1,6 +1,5 @@ require 'test/unit' require 'tempfile' -$:.replace([File.dirname(File.expand_path(__FILE__))] | $:) require 'envutil' class TestBeginEndBlock < Test::Unit::TestCase diff --git a/test/ruby/test_file.rb b/test/ruby/test_file.rb index b35a2661c..09d6c5202 100644 --- a/test/ruby/test_file.rb +++ b/test/ruby/test_file.rb @@ -1,6 +1,5 @@ require 'test/unit' require 'tempfile' -$:.replace([File.dirname(File.expand_path(__FILE__))] | $:) require 'ut_eof' $KCODE = 'none' diff --git a/test/ruby/test_pipe.rb b/test/ruby/test_pipe.rb index 03b38635c..a6b7c14ed 100644 --- a/test/ruby/test_pipe.rb +++ b/test/ruby/test_pipe.rb @@ -1,5 +1,4 @@ require 'test/unit' -$:.replace([File.dirname(File.expand_path(__FILE__))] | $:) require 'ut_eof' require 'envutil' diff --git a/test/ruby/test_system.rb b/test/ruby/test_system.rb index a19f6ef9b..322b0c9ce 100644 --- a/test/ruby/test_system.rb +++ b/test/ruby/test_system.rb @@ -1,5 +1,4 @@ require 'test/unit' -$:.replace([File.dirname(File.expand_path(__FILE__))] | $:) require 'envutil' $KCODE = 'none' |