| Test-Run-Plugin-ColorSummary documentation | view source | Contained in the Test-Run-Plugin-ColorSummary distribution. |
Test::Run::Plugin::ColorSummary - A Test::Run plugin that colors the summary.
0.0121
package MyTestRun;
use vars qw(@ISA);
@ISA = (qw(Test::Run::Plugin::ColorSummary Test::Run::Obj));
my $tester = MyTestRun->new(
{
test_files =>
[
"t/sample-tests/one-ok.t",
"t/sample-tests/several-oks.t"
],
}
);
$tester->runtests();
We accept two new named parameters to the new constructor:
This is the color string for coloring the success line. The string itself conforms to the one specified in Term::ANSIColor.
This is the color string for coloring the summary line in case of failure. The string itself conforms to the one specified in Term::ANSIColor.
We override _handle_runtests_error() to colour the errors in red. The rest of the documentation is the code.
Shlomi Fish, <shlomif@iglu.org.il>
Please report any bugs or feature requests to
bug-test-run-plugin-colorsummary@rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Run-Plugin-ColorSummary.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Test::Run::Plugin::ColorSummary
You can also look for information at:
http://cpanratings.perl.org/d/Test::Run::Plugin::ColorSummary
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test::Run::Plugin::ColorSummary
http://search.cpan.org/dist/Test::Run::Plugin::ColorSummary/
The latest source of Test::Run::Plugin::ColorSummary is available from the Test::Run BerliOS Subversion repository:
https://svn.berlios.de/svnroot/repos/web-cpan/Test-Harness-NG/
Copyright 2005 Shlomi Fish, all rights reserved.
This program is released under the MIT X11 License.
| Test-Run-Plugin-ColorSummary documentation | view source | Contained in the Test-Run-Plugin-ColorSummary distribution. |