summaryrefslogtreecommitdiff
path: root/test/uri/test_common.rb
diff options
context:
space:
mode:
authorakira <akira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-05 06:09:26 +0000
committerakira <akira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-05 06:09:26 +0000
commit12c8c18f096722f5497f054edcf6c24435c5f879 (patch)
treea95120f82eaed9613c0404f5fd56b81cc21e3fd6 /test/uri/test_common.rb
parent16658578a55558271c76f305e62f526e6296c8e3 (diff)
* test/uri/*: translated RUNIT to Test::Unit.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4694 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/uri/test_common.rb')
-rw-r--r--test/uri/test_common.rb26
1 files changed, 6 insertions, 20 deletions
diff --git a/test/uri/test_common.rb b/test/uri/test_common.rb
index b93a71f553..c213a84c2c 100644
--- a/test/uri/test_common.rb
+++ b/test/uri/test_common.rb
@@ -1,15 +1,10 @@
-#
-# $Id$
-#
-# Copyright (c) 2002 akira yamada <akira@ruby-lang.org>
-# You can redistribute it and/or modify it under the same term as Ruby.
-#
-
-require 'runit/testcase'
-require 'runit/cui/testrunner'
+require 'test/unit'
require 'uri'
-class TestCommon < RUNIT::TestCase
+module URI
+
+
+class TestCommon < Test::Unit::TestCase
def setup
end
@@ -36,14 +31,5 @@ class TestCommon < RUNIT::TestCase
end
end
-if $0 == __FILE__
- if ARGV.size == 0
- suite = TestCommon.suite
- else
- suite = RUNIT::TestSuite.new
- ARGV.each do |testmethod|
- suite.add_test(TestGeneric.new(testmethod))
- end
- end
- RUNIT::CUI::TestRunner.run(suite)
+
end