| Test-Run-Plugin-ColorSummary documentation | Contained in the Test-Run-Plugin-ColorSummary distribution. |
Test::Run::CmdLine::Plugin::ColorSummary - Color the summary in Test::Run::CmdLine.
Returns the Backend Plugins as specified by this plugin. See Test::Run::CmdLine for more information.
Returns the HARNESS_SUMMARY_COL_FAIL and HARNESS_SUMMARY_COL_SUC environment variables.
This plug-in colors the summary line in Test::Run::CmdLine.
This module accepts the followinge environment variables:
This specifies the Term::ANSIColor color for the success line.
This specifies the Term::ANSIColor color for the failure line
Shlomi Fish, <shlomif@iglu.org.il>
Please report any bugs or feature requests to
bug-test-run-cmdline-plugin-colorsummary@rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Run-CmdLine-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::CmdLine::Plugin::ColorSummary
You can also look for information at:
http://annocpan.org/dist/Test::Run::CmdLine::Plugin::ColorSummary
http://cpanratings.perl.org/d/Test::Run::CmdLine::Plugin::ColorSummary
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test::Run::CmdLine::Plugin::ColorSummary
http://search.cpan.org/dist/Test::Run::CmdLine::Plugin::ColorSummary/
The latest source of Test::Run::CmdLine::Plugin::ColorSummary is available from the Test::Run BerliOS Subversion repository:
https://svn.berlios.de/svnroot/repos/web-cpan/Test-Harness-NG/
Copyright 2006 Shlomi Fish, all rights reserved.
This program is released under the following license: MIT X11.
| Test-Run-Plugin-ColorSummary documentation | Contained in the Test-Run-Plugin-ColorSummary distribution. |
package Test::Run::CmdLine::Plugin::ColorSummary; use warnings; use strict;
our $VERSION = '0.0121';
sub private_backend_plugins { my $self = shift; return [qw(ColorSummary)]; }
sub private_direct_backend_env_mapping { my $self = shift; return [ { 'env' => "HARNESS_SUMMARY_COL_SUC", 'arg' => "summary_color_success", }, { 'env' => "HARNESS_SUMMARY_COL_FAIL", 'arg' => "summary_color_failure", }, ]; }
1;