File Coverage

blib/lib/Net/GitHub.pm
Criterion Covered Total %
statement 3 5 60.0
branch n/a
condition n/a
subroutine 1 2 50.0
pod 0 1 0.0
total 4 8 50.0


line stmt bran cond sub pod time code
1             package Net::GitHub;
2              
3 1     1   69160 use Net::GitHub::V3;
  1         3  
  1         94  
4              
5             our $VERSION = '1.02';
6             our $AUTHORITY = 'cpan:FAYLAND';
7              
8             sub new {
9 0     0 0   my $class = shift;
10 0           Net::GitHub::V3->new(@_);
11             }
12              
13             1;
14              
15             __END__