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   30720 use strict;
  1         3  
  1         56  
10 1     1   6 use warnings;
  1         3  
  1         45  
11 1     1   706 use version;
  1         2280  
  1         7  
12 1     1   90 use Carp;
  1         1  
  1         114  
13 1     1   915 use English qw/ -no_match_vars /;
  1         8042  
  1         10  
14 1     1   526 use base qw/Exporter/;
  1         3  
  1         187  
15              
16             our $VERSION = version->new('0.0.3');
17             our @EXPORT_OK = qw//;
18             our %EXPORT_TAGS = ();
19              
20             1;
21              
22             __END__