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   539 use strict;
  3         6  
  3         95  
4 3     3   16 use warnings;
  3         5  
  3         61  
5 3     3   15 use namespace::autoclean;
  3         13  
  3         16  
6              
7             our $VERSION = '0.31';
8              
9 3     3   5659 use Types::Standard qw( ArrayRef HashRef Str );
  3         228086  
  3         30  
10 3     3   4746 use Type::Utils qw( enum );
  3         14606  
  3         33  
11              
12 3     3   1559 use Moo;
  3         7  
  3         24  
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             has attributes => (
27             is => 'ro',
28             isa => ArrayRef [HashRef],
29             predicate => 'has_attributes',
30             );
31              
32             has content => (
33             is => 'ro',
34             isa => ArrayRef,
35             predicate => 'has_content',
36             );
37              
38             __PACKAGE__->meta->make_immutable;
39              
40             1;
41              
42             # ABSTRACT: Class for file change events
43              
44             __END__