App::Prove - Implements the "prove" command.
use App::Prove;
my $app = App::Prove->new; $app->process_args(@ARGV); $app->run;
Create a new "App::Prove". Optionally a hash ref of attribute initializers may be passed.
$prove->add_rc_file('myproj/.proverc');
Called before "process_args" to prepend the contents of an rc file to the options.
$prove->process_args(@args);
Processes the command-line arguments. Attributes will be set appropriately. Any filenames may be found in the "argv" attribute.
Dies on invalid arguments.
Perform whatever actions the command line args specified. The "prove" command line tool consists of the following code:
use App::Prove;
my $app = App::Prove->new; $app->process_args(@ARGV); $app->run;
Load a harness replacement class.
$prove->require_harness($for => $class_name);
Display the version numbers of the loaded TAP::Harness and the current Perl.
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |