summaryrefslogtreecommitdiff
path: root/lib/test/unit/testcase.rb
blob: ec3d362c215d0821d9a4f69d6b8bbdc2b752ea7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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