From: Ryan Davis Date: 2011-06-22T06:58:15+09:00 Subject: [ruby-core:37275] Re: What class should test cases extend? On Jun 13, 2011, at 05:05 , Martin Bo�let wrote: > I found some tests (I assume the newer ones) extending > MiniTest::Unit::TestCase whereas the majority still extends > Test::Unit:TestCase. > > What is the recommended approach in these cases? For ruby-core, I think they should stay consistent and subclass Test::Unit::TestCase (just to be less confusing). There are some exceptions... rubygems and rdoc for example imports all of its tests from an external repo, and we use minitest directly. But for non-imported tests, I think test/unit is less confusing.