summaryrefslogtreecommitdiff
path: root/test/uri/test_mailto.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_mailto.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_mailto.rb')
-rw-r--r--test/uri/test_mailto.rb41
1 files changed, 12 insertions, 29 deletions
diff --git a/test/uri/test_mailto.rb b/test/uri/test_mailto.rb
index 4fd1476625..ba437904f8 100644
--- a/test/uri/test_mailto.rb
+++ b/test/uri/test_mailto.rb
@@ -1,22 +1,10 @@
-#
-# $Id$
-#
-# Copyright (c) 2001 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/mailto'
+
module URI
- class Generic
- def to_ary
- component_ary
- end
- end
-end
-class TestMailTo < RUNIT::TestCase
+
+class TestMailTo < Test::Unit::TestCase
def setup
@u = URI::MailTo
end
@@ -24,6 +12,10 @@ class TestMailTo < RUNIT::TestCase
def teardown
end
+ def uri_to_ary(uri)
+ uri.class.component.collect {|c| uri.send(c)}
+ end
+
def test_build
ok = []
bad = []
@@ -109,7 +101,7 @@ class TestMailTo < RUNIT::TestCase
end
bad.each do |x|
- assert_exception(URI::InvalidComponentError) {
+ assert_raises(URI::InvalidComponentError) {
@u.build(x)
}
end
@@ -119,21 +111,12 @@ class TestMailTo < RUNIT::TestCase
def test_select
u = URI.parse('mailto:joe@example.com?cc=bob@example.com&body=hello')
- assert_equal(u.to_ary, u.select(*u.component))
- assert_exception(ArgumentError) do
+ assert_equal(uri_to_ary(u), u.select(*u.component))
+ assert_raises(ArgumentError) do
u.select(:scheme, :host, :not_exist, :port)
end
end
end
-if $0 == __FILE__
- if ARGV.size == 0
- suite = TestMailTo.suite
- else
- suite = RUNIT::TestSuite.new
- ARGV.each do |testmethod|
- suite.add_test(TestMailTo.new(testmethod))
- end
- end
- RUNIT::CUI::TestRunner.run(suite)
+
end