Manuals: man/index — tork
Sources: GitHub - sunaku/tork: 💞 Tests your Ruby code, in parallel, as you change it
Support: Issues · sunaku/tork · GitHub
Package: tork | RubyGems.org | your community gem host
Tork runs your tests as they change, in parallel:
- Absorbs test execution overhead into a master process.
- Forks to inherit overhead and run test files in parallel.
- Avoids running unchanged tests inside changed test files.
Version 19.9.0 (2014-07-17)
Minor:
-
Add support for testing outside
test/
andspec/
directories.
This
change lets you run test files directly from the current working
directory
without having to put them inside specialtest/
andspec/
directories.This can be useful if you are learning Ruby or writing tests for
simple
scripts because you need not create a directory structure that is
fit for
a larger application just for the sole purpose of running your
tests! -
Drop the
default
configuration helper and load theconfig.rb
files of
all configuration helpers on startup instead. This way, each helper
can
itself detect whether it is needed from inside its ownconfig.rb
file. -
Censor Tork internals from test failure backtraces so that users can
inspect them quickly to find where errors are arising in their code.
Patch:
- Only 1 worker was being used on a dual-core system.
Other:
- tork(1): use complete sentences in the help message.