File Coverage

blib/lib/WWW/BigDoor/Currency.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::Currency;
2              
3 5     5   30008 use strict;
  5         13  
  5         201  
4 5     5   29 use warnings;
  5         9  
  5         184  
5              
6             #use Smart::Comments -ENV;
7              
8 5     5   28 use base qw(WWW::BigDoor::Resource Class::Accessor);
  5         11  
  5         686  
9              
10             __PACKAGE__->follow_best_practice;
11             __PACKAGE__->mk_accessors(
12             qw(currency_type_id currency_type_title currency_type_description exchange_rate relative_weight id read_only urls)
13             );
14              
15             1;
16             __END__