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   65 use strict;
  16         18  
  16         397  
4 16     16   55 use warnings;
  16         23  
  16         360  
5              
6 16     16   55 use base 'WWW::Tumblr';
  16         18  
  16         1321  
7              
8 16     16   5639 use WWW::Tumblr::Authentication::None;
  16         26  
  16         379  
9 16     16   5279 use WWW::Tumblr::Authentication::APIKey;
  16         31  
  16         382  
10 16     16   5261 use WWW::Tumblr::Authentication::OAuth;
  16         42  
  16         644  
11              
12             1;