File Coverage

blib/lib/WebService/Qiita/V2.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 18 19 94.7


line stmt bran cond sub pod time code
1             package WebService::Qiita::V2;
2 5     5   233981 use 5.008001;
  5         49  
3 5     5   22 use strict;
  5         9  
  5         92  
4 5     5   21 use warnings;
  5         9  
  5         185  
5              
6             our $VERSION = "0.02";
7              
8 5     5   1758 use WebService::Qiita::V2::Client;
  5         14  
  5         277  
9              
10             sub new {
11 4     4 0 277 my ($class, $args) = @_;
12              
13 4         22 WebService::Qiita::V2::Client->new($args);
14             }
15              
16             1;
17             __END__