File Coverage

blib/lib/App/PerlWatcher/Frontend.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package App::PerlWatcher::Frontend;
2             {
3             $App::PerlWatcher::Frontend::VERSION = '0.20';
4             }
5             # ABSTRACT: The base role to which will be notified of updated watcher statuses.
6              
7 1     1   643 use 5.12.0;
  1         5  
  1         32  
8 1     1   5 use strict;
  1         1  
  1         25  
9 1     1   5 use warnings;
  1         1  
  1         27  
10              
11 1     1   5 use Carp;
  1         1  
  1         65  
12 1     1   5 use Moo::Role;
  1         2  
  1         5  
13              
14              
15             requires 'update';
16              
17              
18             requires 'poll';
19              
20              
21             has 'engine' => ( is => 'ro', required => 1 );
22              
23             1;
24              
25             __END__