aboutsummaryrefslogtreecommitdiffstats
path: root/test/rdoc/test_rdoc_markup_to_html.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-24 23:05:28 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-24 23:05:28 +0000
commit7222e82a8b98afdc61b9cf6ad7419068429a42e9 (patch)
tree9601822113feef70fe4f6fc19b5453dd378dcd62 /test/rdoc/test_rdoc_markup_to_html.rb
parentda6300e8f888d0664347a5f2fb43dc749df7b5ad (diff)
downloadruby-7222e82a8b98afdc61b9cf6ad7419068429a42e9.tar.gz
Import RDoc 2.2.2 r192
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19930 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rdoc/test_rdoc_markup_to_html.rb')
-rw-r--r--test/rdoc/test_rdoc_markup_to_html.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/rdoc/test_rdoc_markup_to_html.rb b/test/rdoc/test_rdoc_markup_to_html.rb
index 05fb9f2375..b611b768a3 100644
--- a/test/rdoc/test_rdoc_markup_to_html.rb
+++ b/test/rdoc/test_rdoc_markup_to_html.rb
@@ -1,8 +1,9 @@
-require 'test/unit'
+require 'rubygems'
+require 'minitest/unit'
require 'rdoc/markup'
require 'rdoc/markup/to_html'
-class TestRDocMarkupToHtml < Test::Unit::TestCase
+class TestRDocMarkupToHtml < MiniTest::Unit::TestCase
def setup
@am = RDoc::Markup::AttributeManager.new
@@ -40,3 +41,5 @@ class TestRDocMarkupToHtml < Test::Unit::TestCase
end
end
+
+MiniTest::Unit.autorun