As soon as you save a file, autotest will run the matching tests.

(Extracted from ZenTest)

Improvements over ZenTest

  • -c not run all tests after a failed test passes
  • -r use given config file
  • -p use parallel_tests to run tests
  • -s use any style you want -> alias autospec2="autotest --style rspec2"
  • simplified test setup
  • simplified packaging
  • less globals
  • integration tests

Install

Uninstall ZenTest first, or autotest will not be found:
sudo gem uninstall ZenTest
Install:
sudo gem install autotest
Optional: Support for Test::Unit on Rails
sudo gem install autotest-rails-pure
Optional: an ZenTest without Autotest version:
sudo gem install zentest-without-autotest

Usage

  • go to a project folder with tests/specs/…
  • run autotest

Options

-f, –fast-start Do not run full tests at start
-p, –parallel Run tests in parallel (experimental) – gem install parallel_tests)
-c, –no-full-after-failed Do not run full tests after failed test passed
-v, –verbose Be verbose. Prints files that autotest doesn’t know how to map to tests
-q, –quiet Be quiet.
-r, –rc CONFIG Path to config file. (Defaults to ~/.autotest or current_dir/.autotest)
-s, –style STYLE Which style to use, e.g. rspec, rspec2
-h, –help Show this.

Tips

TODO

  • add documentation for hooks
  • cleanup bin/autotest Dir hacks
  • remove globals from unitdiff
  • add some automatic notifications e.g. autotest -n -> use any notify library found

License

Autotest was extracted from ZenTest and improved by:

ZenTest Authors

(The MIT License)

Copyright © 2001-2006 Ryan Davis, Eric Hodel, Zen Spider Software

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
“Software”), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.