diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-10-15 23:38:10 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-10-15 23:38:10 +0000 |
| commit | aef44205639cc7b114e1cd423443d6a78c271566 (patch) | |
| tree | c73178db42b65dc40319bc4b0bf3db7a8268ff3d /test/digest/test_digest.rb | |
| parent | 6d5b341d389a203c0862d67d5aba75f617615490 (diff) | |
| download | ruby-aef44205639cc7b114e1cd423443d6a78c271566.tar.gz ruby-aef44205639cc7b114e1cd423443d6a78c271566.tar.xz ruby-aef44205639cc7b114e1cd423443d6a78c271566.zip | |
* test/digest/test_digest.rb (test_eq): show failed class.
* test/ruby/test_iterator.rb (test_break, test_return_trace_func):
test localjump destination.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4783 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/digest/test_digest.rb')
| -rw-r--r-- | test/digest/test_digest.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/digest/test_digest.rb b/test/digest/test_digest.rb index 51865aa96..89f0660fc 100644 --- a/test/digest/test_digest.rb +++ b/test/digest/test_digest.rb @@ -76,16 +76,16 @@ class TestDigest < Test::Unit::TestCase ALGOS.each do |algo| md1 = algo.new("ABC") - assert_equal(md1, md1.clone) + assert_equal(md1, md1.clone, algo) md2 = algo.new md2 << "A" - assert(md1 != md2) + assert(md1 != md2, algo) md2 << "BC" - assert_equal(md1, md2) + assert_equal(md1, md2, algo) end end end |
