File Coverage

blib/lib/WWW/Kickstarter/Data/User/Myself.pm
Criterion Covered Total %
statement 12 20 60.0
branch n/a
condition n/a
subroutine 4 8 50.0
pod 4 4 100.0
total 20 32 62.5


line stmt bran cond sub pod time code
1              
2             package WWW::Kickstarter::Data::User::Myself;
3              
4 1     1   8 use strict;
  1         4  
  1         38  
5 1     1   7 use warnings;
  1         3  
  1         36  
6 1     1   8 no autovivification;
  1         3  
  1         13  
7              
8              
9 1     1   105 use WWW::Kickstarter::Data::User qw( );
  1         4  
  1         233  
10              
11              
12             our @ISA = 'WWW::Kickstarter::Data::User';
13              
14              
15 0     0 1   sub notification_prefs { my $self = shift; return $self->ks->my_notification_prefs(@_); }
  0            
16 0     0 1   sub projects_created { my $self = shift; return $self->ks->my_projects_created(@_); }
  0            
17 0     0 1   sub projects_backed { my $self = shift; return $self->ks->my_projects_backed(@_); }
  0            
18 0     0 1   sub projects_starred { my $self = shift; return $self->ks->my_projects_starred(@_); }
  0            
19              
20              
21             1;
22              
23              
24             __END__