File Coverage

bin/simple_scan
Criterion Covered Total %
statement 10 12 83.3
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 16 87.5


line stmt bran cond sub pod time code
1             #!/usr/bin/env perl
2 33     33   852 use 5.008;
  33         105  
  33         1367  
3 33     33   163 use warnings;
  33         42  
  33         887  
4 33     33   155 use strict;
  33         54  
  33         1781  
5             $|++;
6              
7             our $VERSION = "1.02";
8              
9 33     33   24012 use App::SimpleScan;
  0            
  0            
10              
11             my $app = new App::SimpleScan;
12             exit $app->go;
13              
14             __END__