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:
- Absorbs the test execution overhead into the main Ruby process.
- Forks to run your test files without overhead and in parallel.
- Avoids running unchanged test blocks inside changed test files.
What is new?
Version 12.3.0 (2011-07-19)
New features:
-
Add
Test::Loop::max_concurrent_tests
configuration parameter to
limit the number of test files run concurrently (default 4).
Otherwise, with large test suites, we could end up swamping the
machine running the tests by forking hundreds of test files at
once. (Jacob H.) -
Rails: add matcher for test/factories/*_factory.rb.
Housekeeping:
-
ENV returns a Hash with duplicate/frozen keys/values.
(Brian D. Burns) -
Use Marshal to propagate resume_files to reabsorb.
-
Store test_files in a Set instead of an Array.