File Coverage

blib/lib/App/filewatch.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 App::filewatch;
2              
3             # Created on: 2015-03-08 07:23:09
4             # Create by: Ivan Wills
5             # $Id$
6             # $Revision$, $HeadURL$, $Date$
7             # $Revision$, $Source$, $Date$
8              
9 1     1   48812 use strict;
  1         1  
  1         19  
10 1     1   3 use warnings;
  1         1  
  1         16  
11 1     1   347 use version;
  1         1338  
  1         4  
12 1     1   57 use Carp;
  1         6  
  1         39  
13 1     1   474 use English qw/ -no_match_vars /;
  1         2554  
  1         3  
14 1     1   241 use base qw/Exporter/;
  1         1  
  1         135  
15              
16             our $VERSION = version->new('0.005');
17             our @EXPORT_OK = qw//;
18             our %EXPORT_TAGS = ();
19              
20             1;
21              
22             __END__