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   14583 use strict;
  1         2  
  1         20  
10 1     1   3 use warnings;
  1         1  
  1         16  
11 1     1   367 use version;
  1         1292  
  1         4  
12 1     1   48 use Carp;
  1         1  
  1         58  
13 1     1   569 use English qw/ -no_match_vars /;
  1         2739  
  1         4  
14 1     1   257 use base qw/Exporter/;
  1         1  
  1         109  
15              
16             our $VERSION = version->new('0.004');
17             our @EXPORT_OK = qw//;
18             our %EXPORT_TAGS = ();
19              
20             1;
21              
22             __END__