File Coverage

blib/lib/WWW/Kickstarter/Data/NotificationPref.pm
Criterion Covered Total %
statement 12 17 70.5
branch n/a
condition n/a
subroutine 4 9 44.4
pod 5 5 100.0
total 21 31 67.7


line stmt bran cond sub pod time code
1              
2             package WWW::Kickstarter::Data::NotificationPref;
3              
4 1     1   8 use strict;
  1         4  
  1         39  
5 1     1   7 use warnings;
  1         3  
  1         36  
6 1     1   8 no autovivification;
  1         3  
  1         6  
7              
8              
9 1     1   66 use WWW::Kickstarter::Data qw( );
  1         4  
  1         218  
10              
11              
12             our @ISA = 'WWW::Kickstarter::Data';
13              
14              
15 0     0 1   sub id { $_[0]{id} }
16 0     0 1   sub project_id { $_[0]{project}{id} }
17 0     0 1   sub project_name { $_[0]{project}{name} }
18 0     0 1   sub notify_by_email { $_[0]{email} }
19 0     0 1   sub notify_by_mobile { $_[0]{mobile} }
20              
21              
22             1;
23              
24              
25             __END__