The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

prove_runscripts - Run scripts around a TAP harness.

USAGE

prove_runscripts [options] [files or directories]

OPTIONS

Options that take arguments: --before Run script before a TAP harness. --after Run script after a TAP harness.

Other options are same as prove. See prove -h for more details.

EXAMPLE

Run Test::mysqld before a running test scripts

    $ prove_runscripts --before setup_test_mysqld.pl -lr t/

Run multiple scripts

    $ prove_runscripts -lr t/ \
    > --before b1.pl --before b2.pl \
    > --after  a1.pl --after  a2.pl

This command run scripts like below.

    b1.pl -> b2.pl -> t/ -> a1.pl -> a2.pl

SEE ALSO

App::Prove::RunScripts, prove