mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
cbc6a104b2
lib/test/unit/testcase.rb: ditto. at asakusa.rb. [ruby-core:20014] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20632 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
12 lines
199 B
Ruby
12 lines
199 B
Ruby
require 'test/unit/assertions'
|
|
|
|
module Test
|
|
module Unit
|
|
class TestCase < MiniTest::Unit::TestCase
|
|
include Assertions
|
|
def self.test_order
|
|
:sorted
|
|
end
|
|
end
|
|
end
|
|
end
|