package Test::Nightly::Report::Template; use strict; our $VERSION = '0.03'; =head1 NAME Test::Nightly::Report::Template =head1 DESCRIPTION Default template for test reporting =cut use constant DEFAULT => '

Test::Nightly Report

[% FOREACH module = tests.keys %] [% FOREACH test_group = tests.$module %] [% END %] [% END %]
Test Passed Failed
[% module %]
[% test_group.test %] [% IF test_group.status == \'passed\' %]Passed[% ELSE %] [% END %] [% IF test_group.status == \'failed\' %]Failed[% ELSE %] [% END %]
'; =head1 AUTHOR Kirstin Bettiol =head1 COPYRIGHT (c) 2005 Kirstin Bettiol This library is free software, you can use it under the same terms as perl itself. =head1 SEE ALSO L L. =cut 1;