krang_test - run tests on Krang
Run all tests:
$ krang_test
Run just one test file:
krang_test --files=t/foo.t
Make it verbose:
krang_test --files=t/foo.t --verbose
You can also call this script through the Makefile:
make test TEST_FILES=t/foo.t TEST_VERBOSE=1
Runs tests on Krang.
- --files
Which files to run tests on. May be a space-separated list of files
(``t/foo.t t/bar.t'') and may use globbing (``t/*.t'').
- --verbose
Prints a running dialog of what's happening.
- --tap-archive
Create an archive file of the test run's TAP output instead of the
normal Test::Harness summary. Useful when you want to process the
resulting test run or feed it to smolder. The resulting file is named
krang_test_run.tar.gz.
- --help
- --man