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             package Catalyst::Model;
2              
3 85     85   1501405 use Moose;
  85         477800  
  85         777  
4             extends qw/Catalyst::Component/;
5              
6 85     85   616212 no Moose;
  85         273  
  85         610  
7              
8             =head1 NAME
9              
10             Catalyst::Model - Catalyst Model base class
11              
12             =head1 SYNOPSIS
13              
14             See L<Catalyst>.
15              
16             =head1 DESCRIPTION
17              
18             Catalyst Model base class.
19              
20             =head1 METHODS
21              
22             Implements the same methods as other Catalyst components, see
23             L<Catalyst::Component>
24              
25             =head1 AUTHORS
26              
27             Catalyst Contributors, see Catalyst.pm
28              
29             =head1 COPYRIGHT
30              
31             This library is free software. You can redistribute it and/or modify it under
32             the same terms as Perl itself.
33              
34             =cut
35              
36             __PACKAGE__->meta->make_immutable;
37              
38             1;