Test::Chimps::ReportCollection - Encapsulate a collection of smoke test reports


Test-Chimps documentation Contained in the Test-Chimps distribution.

Index


Code Index:

NAME

Top

Test::Chimps::ReportCollection - Encapsulate a collection of smoke test reports

SYNOPSIS

Top

See Jifty::DBI::Collection.

METHODS

Top

record_class

Overridden method. Always returns 'Test::Chimps::Report'.

table

Overridden method. Always returns 'reports'.

AUTHOR

Top

Zev Benjamin, <zev at cpan.org>

BUGS

Top

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.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc Test::Chimps

You can also look for information at:

* Mailing list

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.

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Test-Chimps

* CPAN Ratings

http://cpanratings.perl.org/d/Test-Chimps

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-Chimps

* Search CPAN

http://search.cpan.org/dist/Test-Chimps

COPYRIGHT & LICENSE

Top


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;