mkhan has asked for the wisdom of the Perl Monks concerning the following question:
use TAP::Harness use IO::Handle; use TAP::Formatter::HTML; use File::Glob::Windows; use TAP::Parser::Aggregator; my $fmt = TAP::Formatter::HTML->new; my @tests = glob( 'te*.pl'); my $harness = TAP::Harness->new( { formatter => $fmt, merge => 1 } ); $fmt->output_file('output.html'); $harness->runtests(@tests);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Cannot redirect HTML output to a file using TAP::Formatter
by Illuminatus (Curate) on Jun 28, 2011 at 22:47 UTC | |
by mkhan (Sexton) on Jun 28, 2011 at 23:16 UTC | |
by Khen1950fx (Canon) on Jun 29, 2011 at 05:36 UTC | |
by mkhan (Sexton) on Jun 29, 2011 at 10:45 UTC |