[via Anthony Eden]
Make your test output sexy with MonkeyTest. Do it.

Archived comments
Comments were previously allowed on articles. Though no new comments are being accepted you can see the old comments below.
-
I like turn which gives me a pass/fail on each and every test method instead of only on the class. Couple it with facets for nice coloring.
-
Interesting… will check out turn, though seeing each passing test isnt particularly useful.
Monkeytest shows individual failures too:
+------------------------------------------+-------+------------+--------+ | Test Class | Tests | Assertions | Status | +------------------------------------------+-------+------------+--------+ | MessageTest | 10 | 22 | FAIL | | ResultsControllerTest | 1 | 1 | PASS | | MessagesControllerTest | 2 | 2 | PASS | | ContestantTest | 1 | 1 | PASS | | VoteTest | 1 | 1 | PASS | +------------------------------------------+-------+------------+--------+ | Total | 15 | 27 | | +------------------------------------------+-------+------------+--------+ Finished in 0.287826 secondsErrors & Failures:
MessageTest::test_dummy_assertion (message_test.rb:55) FAIL
is not true.
-
Have you ever had any problems with MonkeyTest? I’ve got a unit test that passes when I run it via the normal Rake task, but fails when run by MonkeyTest. Any ideas?