File Coverage

blib/lib/MojoMojo/Schema/Base/ResultSet.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package MojoMojo::Schema::Base::ResultSet;
2              
3 40     40   27937 use strict;
  40         99  
  40         1055  
4 40     40   198 use warnings;
  40         86  
  40         985  
5 40     40   191 use parent qw/DBIx::Class::ResultSet/;
  40         85  
  40         223  
6              
7             =head1 NAME
8              
9             MojoMojo::Schema::Base::ResultSet - base class for ResultSet classes
10              
11             =head1 DESCRIPTION
12              
13             Base class for all resultsets below the MojoMojo::Schema::ResultSet::* namespace.
14              
15             =head1 LICENSE
16              
17             This library is free software. You can redistribute it and/or modify
18             it under the same terms as Perl itself.
19              
20             =cut
21              
22             1;