File Coverage

blib/lib/Net/Respite/AutoDoc.pm
Criterion Covered Total %
statement 24 24 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 32 32 100.0


line stmt bran cond sub pod time code
1             package Net::Respite::AutoDoc;
2              
3 1     1   1327 use strict;
  1         3  
  1         41  
4 1     1   6 use warnings;
  1         3  
  1         83  
5 1     1   1016 use CGI::Ex::App qw(:App);
  1         13166  
  1         9  
6 1     1   4238 use base qw(CGI::Ex::App);
  1         2  
  1         185  
7              
8 1     1   847 use Throw qw(throw);
  1         2673  
  1         8  
9 1     1   61 use Time::HiRes ();
  1         2  
  1         35  
10 1     1   989 use JSON ();
  1         13366  
  1         31  
11 1     1   8 use Scalar::Util ();
  1         1  
  1         33  
12              
13             1;