File Coverage

blib/lib/File/ChangeNotify/Event.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 File::ChangeNotify::Event;
2              
3 3     3   461 use strict;
  3         7  
  3         87  
4 3     3   15 use warnings;
  3         5  
  3         72  
5 3     3   15 use namespace::autoclean;
  3         8  
  3         16  
6              
7             our $VERSION = '0.29';
8              
9 3     3   260 use Types::Standard qw( Str );
  3         21  
  3         20  
10 3     3   2669 use Type::Utils qw( enum );
  3         14950  
  3         50  
11              
12 3     3   1654 use Moo;
  3         6  
  3         19  
13              
14             has path => (
15             is => 'ro',
16             isa => Str,
17             required => 1,
18             );
19              
20             has type => (
21             is => 'ro',
22             isa => enum( [qw( create modify delete unknown )] ),
23             required => 1,
24             );
25              
26             __PACKAGE__->meta()->make_immutable();
27              
28             1;
29              
30             # ABSTRACT: Class for file change events
31              
32             __END__