From: Bart Braem Date: 2006-12-08T17:15:06+09:00 Subject: Re: Math3D problems Eric Hodel wrote: >>> 3) Failure: >>> default_test(Math3d::TestCase) [./tests/m3dUnitTest.rb:63]: >>> No tests were specified. >> >> Right, this failure was a matter of not running the default >> Math3d::TestCase >> when running all tests in test.rb: >> >> ObjectSpace.each_object( Class ) {|klass| >> suite << klass.suite if (klass < >> Test::Unit::TestCase and klass != >> Math3d::TestCase) >> } >> >> Any ideas for the other failures? > > If this is an abstract test case then undef_method :default_test. That is a much nicer solution, thanks for the advice! Bart