File Coverage

blib/lib/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 Respite::AutoDoc;
2              
3 1     1   1363 use strict;
  1         3  
  1         61  
4 1     1   7 use warnings;
  1         7  
  1         81  
5 1     1   1021 use CGI::Ex::App qw(:App);
  1         13462  
  1         12  
6 1     1   4342 use base qw(CGI::Ex::App);
  1         3  
  1         163  
7              
8 1     1   656 use Throw qw(throw);
  1         2656  
  1         4  
9 1     1   58 use Time::HiRes ();
  1         2  
  1         32  
10 1     1   1014 use JSON ();
  1         14122  
  1         40  
11 1     1   9 use Scalar::Util ();
  1         2  
  1         36  
12              
13             1;