File Coverage

blib/lib/WWW/BigDoor/NamedGoodCollection.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 WWW::BigDoor::NamedGoodCollection;
2              
3 3     3   5572 use strict;
  3         8  
  3         112  
4 3     3   18 use warnings;
  3         6  
  3         113  
5              
6             #use Smart::Comments -ENV;
7              
8 3     3   18 use base qw(WWW::BigDoor::Resource Class::Accessor);
  3         5  
  3         922  
9              
10             __PACKAGE__->follow_best_practice;
11             __PACKAGE__->mk_accessors( qw(id read_only named_goods attributes urls) );
12              
13             1;
14             __END__