NAME
Archive::TAP::Peek - Look into TAP-Archives
VERSION
version 0.002
SYNOPSIS
use Archive::TAP::Peek;
my $peek = Archive::TAP::Peek->new( archive => 'tests.tar.gz' );
if( $peek->all_ok ) {
print "No errors in archive\n";
}
ABOUT
This is a software library for the perl programming language.
The modul can be of help for you if you have TAP archives (e.g. created with prove -a
and now you wish to know something about the outcomes of the test-results inside the archive.
METHODS
all_ok
Returns a true value if no errors where found in the archive, otherwise false.
if( $peek->all_ok ) {
print "No errors in archive\n";
}
BUGS AND LIMITATIONS
Archive gets unpacked into a temproary directory. Could maybe be made on-the-fly with Archive::Peek.
SEE ALSO
AUTHOR
Boris Däppen <bdaeppen.perl@gmail.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Boris Däppen, plusW.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.