'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 files changed, 1 insertions(+), 1 deletions(-)
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 -- 1.5.4.3 _______________________________________________ sup-talk mailing list [email protected] http://rubyforge.org/mailman/listinfo/sup-talk
