File Coverage

blib/lib/WWW/BigDoor/CurrencyType.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::CurrencyType;
2              
3 2     2   19264 use strict;
  2         4  
  2         95  
4 2     2   14 use warnings;
  2         3  
  2         90  
5              
6             #use Smart::Comments -ENV;
7              
8 2     2   12 use base qw(WWW::BigDoor::Resource Class::Accessor);
  2         4  
  2         6704  
9              
10             __PACKAGE__->follow_best_practice;
11             __PACKAGE__->mk_accessors(
12             qw(id read_only title description has_dollar_exchange_rate_integrity can_be_cross_publisher can_be_purchased can_be_rewarded )
13             );
14              
15             1;
16             __END__