File Coverage

blib/lib/App/aptperl.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 28 28 100.0


line stmt bran cond sub pod time code
1             package App::aptperl;
2              
3             # Created on: 2015-03-05 19:52:38
4             # Create by: Ivan Wills
5             # $Id$
6             # $Revision$, $HeadURL$, $Date$
7             # $Revision$, $Source$, $Date$
8              
9 1     1   68816 use strict;
  1         3  
  1         27  
10 1     1   6 use warnings;
  1         2  
  1         22  
11 1     1   481 use version;
  1         1897  
  1         6  
12 1     1   81 use Carp;
  1         4  
  1         53  
13 1     1   633 use Data::Dumper qw/Dumper/;
  1         6740  
  1         64  
14 1     1   572 use English qw/ -no_match_vars /;
  1         3491  
  1         7  
15 1     1   327 use base qw/Exporter/;
  1         2  
  1         197  
16              
17             our $VERSION = version->new('0.0.4');
18             our @EXPORT_OK = qw//;
19             our %EXPORT_TAGS = ();
20              
21             1;
22              
23             __END__