mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
d04b691b96
class. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24417 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
15 lines
290 B
Ruby
15 lines
290 B
Ruby
require 'test/unit/assertions'
|
|
|
|
module Test
|
|
module Unit
|
|
# remove silly TestCase class
|
|
remove_const(:TestCase) if defined?(self::TestCase)
|
|
|
|
class TestCase < MiniTest::Unit::TestCase
|
|
include Assertions
|
|
def self.test_order
|
|
:sorted
|
|
end
|
|
end
|
|
end
|
|
end
|