| Module-New documentation | Contained in the Module-New distribution. |
Module::New::Recipe::Prove - runs tests
From the shell/command line:
executes the prove command regardless of the current directory (it first changes directory to the distribution root by itself).
You can pass any options and arguments 'prove' accepts.
Kenichi Ishigaki, <ishigaki@cpan.org>
Copyright (C) 2007 by Kenichi Ishigaki.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Module-New documentation | Contained in the Module-New distribution. |
package Module::New::Recipe::Prove; use strict; use warnings; use Module::New::Recipe; use Module::New::Command::Basic; use Module::New::Command::Test; available_options (); flow { guess_root; prove; }; 1; __END__