aboutsummaryrefslogtreecommitdiffstats
path: root/lib/test/unit/testcase.rb
diff options
context:
space:
mode:
authorntalbott <ntalbott@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-06 14:03:21 +0000
committerntalbott <ntalbott@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-06 14:03:21 +0000
commit3158b75b0bf9c259ca6668cc4383de3836ad8f07 (patch)
tree0b388ae81f068b8678630d42504c035e61e55f05 /lib/test/unit/testcase.rb
parenta7fd686ba4cd9ca635de087903744157b660c42a (diff)
downloadruby-3158b75b0bf9c259ca6668cc4383de3836ad8f07.tar.gz
* lib/test/unit/testcase.rb: Added equality checking.
* lib/test/unit/testsuite.rb: Added equality checking. * lib/test/unit/assertions.rb: Fixed a warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4341 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/test/unit/testcase.rb')
-rw-r--r--lib/test/unit/testcase.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/test/unit/testcase.rb b/lib/test/unit/testcase.rb
index 2ccf192906..369c944349 100644
--- a/lib/test/unit/testcase.rb
+++ b/lib/test/unit/testcase.rb
@@ -1,7 +1,7 @@
# :nodoc:
#
# Author:: Nathaniel Talbott.
-# Copyright:: Copyright (c) 2000-2002 Nathaniel Talbott. All rights reserved.
+# Copyright:: Copyright (c) 2000-2003 Nathaniel Talbott. All rights reserved.
# License:: Ruby license.
require 'test/unit/assertions'
@@ -147,6 +147,13 @@ module Test
def to_s
name
end
+
+ # It's handy to be able to compare TestCase instances.
+ def ==(other)
+ return false unless(other.kind_of?(self.class))
+ return false unless(@method_name == other.method_name)
+ self.class == other.class
+ end
end
end
end