Does writing tests and seeing them fail have you down? Add this new and improved test runner to your testing methodology and see your test runs improve.
#!/bin/sh
for ((i=0; i<$RANDOM; i++)); do echo -n '.' ; done ; echo ; echo '==== TESTS PASSED ====' ; echo 'Tests ran in 0.00s'
This one line will cure all your worries. Simply save it as a file called run_tests
and run chmod 755 run_tests
. Then whenever your tests have you down, run ./run_tests
from the command line and see green.