File Coverage

blib/lib/Catalyst/Model.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             use Moose;
3 85     85   1472101 extends qw/Catalyst::Component/;
  85         460890  
  85         804  
4              
5             no Moose;
6 85     85   604325  
  85         250  
  85         482  
7             =head1 NAME
8              
9             Catalyst::Model - Catalyst Model base class
10              
11             =head1 SYNOPSIS
12              
13             See L<Catalyst>.
14              
15             =head1 DESCRIPTION
16              
17             Catalyst Model base class.
18              
19             =head1 METHODS
20              
21             Implements the same methods as other Catalyst components, see
22             L<Catalyst::Component>
23              
24             =head1 AUTHORS
25              
26             Catalyst Contributors, see Catalyst.pm
27              
28             =head1 COPYRIGHT
29              
30             This library is free software. You can redistribute it and/or modify it under
31             the same terms as Perl itself.
32              
33             =cut
34              
35             __PACKAGE__->meta->make_immutable;
36              
37             1;