Tim Pease’s unit test runner and reporter is sexy and has some really interesting features I've never considered when running unit tests. Here’s a piece of the README:
To use the solo runner.
turn --solo -Ilib test/
This will run all tests in the test/ directory in a separate process.
Likewise for the cross runner.
turn --cross -Ilib test/
This will run every pairing of tests in a separate process.
Now that’s interesting. I'd love to have something like GNU Make’s -j option when running unit tests.
# | Discuss
Read: TURN - Test::Unit Reporter (New)