mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 13:34:17 +02:00

* lib/test/unit/assertions.rb: extracted from lib/test/unit.rb. lib/test/unit/testcase.rb: ditto. at asakusa.rb. [ruby-core:20014] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@20702 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
|