mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/test/unit/testcase.rb (Test::Unit): removes silly TestCase
class. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24417 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d427b8a8ee
commit
d04b691b96
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Thu Aug 6 12:05:06 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* lib/test/unit/testcase.rb (Test::Unit): removes silly TestCase
|
||||||
|
class.
|
||||||
|
|
||||||
Thu Aug 6 01:37:20 2009 Akinori MUSHA <knu@iDaemons.org>
|
Thu Aug 6 01:37:20 2009 Akinori MUSHA <knu@iDaemons.org>
|
||||||
|
|
||||||
* ext/digest/sha2/sha2.[ch]: Update to 1.0 RELEASE which fixes an
|
* ext/digest/sha2/sha2.[ch]: Update to 1.0 RELEASE which fixes an
|
||||||
|
|
|
@ -2,6 +2,9 @@ require 'test/unit/assertions'
|
||||||
|
|
||||||
module Test
|
module Test
|
||||||
module Unit
|
module Unit
|
||||||
|
# remove silly TestCase class
|
||||||
|
remove_const(:TestCase) if defined?(self::TestCase)
|
||||||
|
|
||||||
class TestCase < MiniTest::Unit::TestCase
|
class TestCase < MiniTest::Unit::TestCase
|
||||||
include Assertions
|
include Assertions
|
||||||
def self.test_order
|
def self.test_order
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue