| Test-Run-CmdLine documentation | Contained in the Test-Run-CmdLine distribution. |
Test::Run::CmdLine::Prove::App - a module implementing a standalone command line app for runprove.
$ perl -MTest::Run::CmdLine::Prove::App -e 'run()' -- [ARGS]
This is a module implementing a standalone command line application. It was
created to replace the use of the runprove executable which is not always
installed or available in the path.
Actually executed the command-line application.
Shlomi Fish, <shlomif@iglu.org.il>
Please report any bugs or feature requests to
bug-test-run-cmdline@rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Run-CmdLine.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
Copyright 2007 Shlomi Fish, all rights reserved.
This program is released under the MIT X11 License.
| Test-Run-CmdLine documentation | Contained in the Test-Run-CmdLine distribution. |
package Test::Run::CmdLine::Prove::App; use strict; use warnings; use base 'Exporter'; use vars qw(@EXPORT); @EXPORT = (qw(run)); use Test::Run::CmdLine::Prove; sub run { my $p = Test::Run::CmdLine::Prove->create( { 'args' => [@ARGV], 'env_switches' => $ENV{'PROVE_SWITCHES'}, } ); exit(! $p->run()); } 1;