[ANN] test-loop 10.0.1

test-loop - Continuous testing for Ruby with fork/eval
GitHub - sunaku/test-loop: MOVED TO sunaku/testr

What is it?

test-loop is a fast continuous testing tool for Ruby that automatically
detects and tests changes in your application in an efficient manner:

  1. Absorbs the test execution overhead into the main Ruby process.
  2. Forks to run your test files without overhead and in parallel.
  3. Avoids running unchanged test blocks inside changed test files.

What is new?

Version 10.0.1 (2011-04-08)

Bug fixes:

  • Workers must ignore SIGTSTP, otherwise master waits forever before
    exiting.

  • Unregister trap in workers upon first reception instead of racing to
    unregister the trap handlers inherited from the master process.

  • Prevent uncaught throw error on subsequent Ctrl-C.

  • Simpler solution for terminating loop upon Ctrl-C.