lib/zentest.rb in ZenTest-4.9.1 vs lib/zentest.rb in ZenTest-4.9.2
- old
+ new
@@ -62,11 +62,11 @@
#
# See ZenTestMapping for documentation on method naming.
class ZenTest
- VERSION = "4.9.1"
+ VERSION = "4.9.2"
include ZenTestMapping
if $TESTING then
attr_reader :missing_methods
@@ -480,10 +480,10 @@
next if methods.empty? and cls_methods.empty?
indent = 0
is_test_class = self.is_test_class(fullklasspath)
- clsname = $t ? "Test::Unit::TestCase" : "MiniTest::Unit::TestCase"
+ clsname = $t ? "Test::Unit::TestCase" : "Minitest::Test"
superclass = is_test_class ? " < #{clsname}" : ''
@result.push indentunit*indent + "class #{fullklasspath}#{superclass}"
indent += 1