summaryrefslogtreecommitdiff
path: root/test/rubygems/functional.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rubygems/functional.rb')
-rw-r--r--test/rubygems/functional.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/rubygems/functional.rb b/test/rubygems/functional.rb
index 4838167324..98e7cf6661 100644
--- a/test/rubygems/functional.rb
+++ b/test/rubygems/functional.rb
@@ -5,13 +5,14 @@
# See LICENSE.txt for permissions.
#++
-require 'test/unit'
require 'rubygems'
+require 'minitest/unit'
require 'test/insure_session'
require 'rubygems/format'
require 'rubygems/command_manager'
-class FunctionalTest < Test::Unit::TestCase
+class FunctionalTest < MiniTest::Unit::TestCase
+
def setup
@gem_path = File.expand_path("bin/gem")
lib_path = File.expand_path("lib")
@@ -93,3 +94,6 @@ class FunctionalTest < Test::Unit::TestCase
end
end
+
+MiniTest::Unit.autorun
+