| Test-Chimps documentation | Contained in the Test-Chimps distribution. |
Test::Chimps::ReportCollection - Encapsulate a collection of smoke test reports
Overridden method. Always returns 'Test::Chimps::Report'.
Overridden method. Always returns 'reports'.
Zev Benjamin, <zev at cpan.org>
Please report any bugs or feature requests to
bug-test-chimps at rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Chimps.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Test::Chimps
You can also look for information at:
Chimps has a mailman mailing list at chimps@bestpractical.com. You can subscribe via the web interface at http://lists.bestpractical.com/cgi-bin/mailman/listinfo/chimps.
Copyright 2006 Best Practical Solutions.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Test-Chimps documentation | Contained in the Test-Chimps distribution. |
package Test::Chimps::ReportCollection; use warnings; use strict;
use base qw/Jifty::DBI::Collection/;
sub record_class { return 'Test::Chimps::Report'; }
# we don't need this for SVN Jifty::DBI, but those changes haven't # been pushed to CPAN yet sub table { return 'reports'; }
1;