NAME
SmokeRunner::Multi::Runner::TAPArchive - Runner subclass which creates a TAP archive file
VERSION
version 0.21
SYNOPSIS
my $runner = SmokeRunner::Multi::Runner::TAPArchive->new( set => $set );
$runner->run_tests();
my $archive_file = $runner->tap_archive_file;
DESCRIPTION
This subclass runs tests to produce a .tar.gz file which contains a set of TAP files for a test run. Each file contains the output from a single test file, with a .tap
extension. In addition to the TAP files, a meta.yml file is included which contains extra information about the test run.
METHODS
This class provides the following methods:
SmokeRunner::Multi::Runner::TAPArchive->new()
This method creates a new runner object. It requires one parameter:
set
A
SmokeRunner::Multi::TestSet
object.
$runner->run_tests()
This method runs the tests.
$runner->tap_archive_file()
This returns the filename of the resulting TAP archive.
AUTHOR
Michael Peters, <mpeters@plusthree.com> 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.
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.