From 3dcf6860246aa95e26cc7654bd253b78a467f889 Mon Sep 17 00:00:00 2001 From: Rich Lane Date: Tue, 11 Nov 2008 12:52:50 -0500 Subject: [PATCH] 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. --- test/test_mbox_parsing.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.43.0