NAME
Test::Smoke::Fact::TestResult - 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,
},
);
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", "-", and "?". They are documented in Test::Smoke.
- output
-
This is the complete output caught during a smoke test run.
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.