NAME
Test::Smoke::Fact::Result - The output for a Test::Smoke report
SYNOPSIS
my $fact = Test::Smoke::Fact::TestOutput->new (
resource => "http://perl5.git.perl.org/perl.git/8c576062",
content => {
io_env => "perlio",
summary => "F",
output => $output,
statistics => "Files=1802, Tests=349808, 228 wallcl...",
},
);
DESCRIPTION
These are the results for a finished configuration. It will hold as much information as possible.
- io_env
-
This item describes the IO environment a test run for a specific configuration. Possible values include "stdio", "perlio" and the description of the
locale
in which a Unicode enabled test was run, e.g. "nl_NL.utf8". - summary
-
This item describes the final state of the smoke. Possible values are "O", "F", "X", "c", "M", "m", "t", "-", and "?". They are documented in Test::Smoke.
- output
-
This is the complete output caught during a smoke test run.
- statistics
-
This item optionally holds the line that reflects the test run statistics, like:
Files=1802, Tests=349808, 228 wallclock secs ... (43.03 usr 11.80 sys + 269.61 cusr 38.35 csys = 362.79 CPU)
SEE ALSO
Test::Smoke, Test::Smoke::Metabase, Metabase::Fact. Metabase::Fact::Hash.
AUTHOR
H.Merijn Brand
COPYRIGHT AND LICENSE
Copyright (c) 2010 by H.Merijn Brand
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.