File Coverage

blib/lib/Test/Chimps/ReportCollection.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 14 18 77.7


line stmt bran cond sub pod time code
1             package Test::Chimps::ReportCollection;
2              
3 1     1   6 use warnings;
  1         2  
  1         45  
4 1     1   4 use strict;
  1         1  
  1         39  
5              
6             =head1 NAME
7              
8             Test::Chimps::ReportCollection - Encapsulate a collection of smoke test reports
9              
10             =head1 SYNOPSIS
11              
12             See L.
13              
14             =cut
15            
16 1     1   4 use base qw/Jifty::DBI::Collection/;
  1         2  
  1         1386  
17              
18             =head1 METHODS
19              
20             =head2 record_class
21              
22             Overridden method. Always returns 'Test::Chimps::Report'.
23              
24             =cut
25              
26             sub record_class {
27 0     0 1   return 'Test::Chimps::Report';
28             }
29              
30             =head2 table
31              
32             Overridden method. Always returns 'reports'.
33              
34             =cut
35              
36             # we don't need this for SVN Jifty::DBI, but those changes haven't
37             # been pushed to CPAN yet
38             sub table {
39 0     0 1   return 'reports';
40             }
41              
42             =head1 AUTHOR
43              
44             Zev Benjamin, C<< >>
45              
46             =head1 BUGS
47              
48             Please report any bugs or feature requests to
49             C, or through the web interface at
50             L.
51             I will be notified, and then you'll automatically be notified of progress on
52             your bug as I make changes.
53              
54             =head1 SUPPORT
55              
56             You can find documentation for this module with the perldoc command.
57              
58             perldoc Test::Chimps
59              
60             You can also look for information at:
61              
62             =over 4
63              
64             =item * Mailing list
65              
66             Chimps has a mailman mailing list at
67             L. You can subscribe via the web
68             interface at
69             L.
70              
71             =item * AnnoCPAN: Annotated CPAN documentation
72              
73             L
74              
75             =item * CPAN Ratings
76              
77             L
78              
79             =item * RT: CPAN's request tracker
80              
81             L
82              
83             =item * Search CPAN
84              
85             L
86              
87             =back
88              
89             =head1 COPYRIGHT & LICENSE
90              
91             Copyright 2006 Best Practical Solutions.
92              
93             This program is free software; you can redistribute it and/or modify it
94             under the same terms as Perl itself.
95              
96             =cut
97              
98             1;