From: Rich Lane Date: Tue, 11 Nov 2008 17:52:50 +0000 (-0500) Subject: fix class name collision in testcases X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=3dcf6860246aa95e26cc7654bd253b78a467f889;p=sup fix class name collision in testcases 'rake test' was broken because both testcases' classes had the same name and the setup method was overridden. This patch changes the class name in test_mbox_parsing. --- diff --git a/test/test_mbox_parsing.rb b/test/test_mbox_parsing.rb index 070b152..3a6c2f8 100644 --- a/test/test_mbox_parsing.rb +++ b/test/test_mbox_parsing.rb @@ -6,7 +6,7 @@ require 'stringio' include Redwood -class TestMessage < Test::Unit::TestCase +class TestMBoxParsing < Test::Unit::TestCase def setup end