Test::Unit doesn’t output the specifics of test failure and errors until the entire suite as completed running.
With a large enough (read: slow) suite, a lot of time can be wasted just waiting for tests to finish in order to figure out what’s actually broken.
Well, this is Ruby, so let’s just patch Test::Unit to do what [...]