Module::New::Recipe::Prove - runs tests


Module-New documentation Contained in the Module-New distribution.

Index


Code Index:

NAME

Top

Module::New::Recipe::Prove - runs tests

USAGE

Top

From the shell/command line:

module_new prove -lv t/*.t

executes the prove command regardless of the current directory (it first changes directory to the distribution root by itself).

OPTIONS

Top

You can pass any options and arguments 'prove' accepts.

AUTHOR

Top

Kenichi Ishigaki, <ishigaki@cpan.org>

COPYRIGHT AND LICENSE

Top


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__