test-loop - Continuous testing for Ruby with fork/eval
5.0.0 GitHub - sunaku/test-loop: MOVED TO sunaku/testr
What is it?
test-loop is a fast continuous testing tool for Ruby that
continuously detects and tests changes in your Ruby application
in an efficient manner, whereby it:
- Absorbs the test execution overhead into the main Ruby process.
- Forks to run (eval) your test files directly, without overhead.
- Avoids running unchanged test blocks inside changed test files.
What is new?
-
The configuration file must now yield a Ruby
hash instead of polluting the global Object
private environment with instance variables. -
Shortened the
:source_file_glob_to_test_file_mapping
configuration parameter name to:test_file_matchers
.
Happy testing!