File Coverage

blib/lib/WWW/Tumblr/Authentication.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package WWW::Tumblr::Authentication;
2              
3 16     16   175 use strict;
  16         222  
  16         775  
4 16     16   103 use warnings;
  16         32  
  16         965  
5              
6 16     16   126 use base 'WWW::Tumblr';
  16         40  
  16         6423  
7              
8 16     16   8066 use WWW::Tumblr::Authentication::None;
  16         45  
  16         616  
9 16     16   7873 use WWW::Tumblr::Authentication::APIKey;
  16         49  
  16         672  
10 16     16   8774 use WWW::Tumblr::Authentication::OAuth;
  16         73  
  16         1008  
11              
12             1;