
SmokeRunner::Multi::Reporter::Smolder - Reports test runs to a Smolder installation

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

This class implements test reporting by reporting to a Smolder installation.

This class provides the following methods:
This method creates a new reporter object. It requires one parameter:
A SmokeRunner::Multi::Runner object. You should already have called $runner->run_tests() on this object.
This runner object must be a SmokeRunner::Multi::Runner::Smolder object.
Additionally, it expects to find Smolder configuration information in the config file. This information should include "server" "username", and "password" keys.
smolder:
server: smolder.example.com
username: someone
password: something
If this config data is not present, the constructor will die.
This executes smolder_smoke_signal to actually report the test results. It uses the configuration information found in the config file for the appropriate executable arguments.
The set's name will be passed to smolder_smoke_signal as the value for "--project".
This will fail if it cannot find a smolder_smoke_signal executable in your path, since this is needed to actually do the reporting.

Dave Rolsky, <autarch@urth.org>

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 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.