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

NAME

SmokeRunner::Multi::Reporter::Screen - Prints runner output to STDOUT

VERSION

version 0.21

SYNOPSIS

  my $reporter =
      SmokeRunner::Multi::Reporter::Screen->new( runner => $runner );

  $reporter->report();

DESCRIPTION

This class implements test reporting by simply printing the output from the runner to STDOUT. It can be handy if you're trying to debug the SmokeRunner code, or your tests fails mysteriously under the smoke runner but not when run by hand.

METHODS

This class provides the following methods:

SmokeRunner::Multi::Reporter::Smolder->new(...)

This method creates a new reporter object. It requires one parameter:

  • runner

    A SmokeRunner::Multi::Runner object. You should already have called $runner->run_tests() on this object.

$reporter->report()

This simply prints the return value of $runner->output().

AUTHOR

Dave Rolsky, <autarch@urth.org>

BUGS

Please report any bugs or feature requests to bug-smokerunner-multi@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT & LICENSE

Copyright 2007 LiveText, Inc., All Rights Reserved.

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

The full text of the license can be found in the LICENSE file included with this module.

AUTHORS

  • Dave Rolsky <autarch@urth.org>

  • Yanick Champoux <yanick@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2007 by LiveText, Inc..

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