The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Test::Clustericious::Log - Clustericious logging in tests.

VERSION

version 0.15

SYNOPSIS

 use Test::Clustericious::Log;
 use Test::More;
 use MyClustericiousApp;
 
 my $app = MyClustericiousApp->new;
 
 ok $test, 'test description';
 ...

DESCRIPTION

This module redirects the log4perl output from a Clustericious application to TAP using Test::Builder. By default it sends DEBUG to WARN messages to note and ERROR to FATAL to diag, so you should only see error and fatal messages if you run prove -l on your test but will see debug and warn messages if you run prove -lv.

If the test fails for any reason, the entire log file will be printed out using diag when the test is complete. This is useful for CPAN testers reports.

AUTHOR

original author: Brian Duggan

current maintainer: Graham Ollis <plicease@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by NASA GSFC.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.