File Coverage

blib/lib/Regex/Object/Match.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 27 27 100.0


line stmt bran cond sub pod time code
1             package Regex::Object::Match;
2              
3 4     4   54 use 5.20.0;
  4         12  
4              
5 4     4   20 use utf8;
  4         5  
  4         22  
6 4     4   80 use English;
  4         6  
  4         14  
7 4     4   1194 use feature qw(signatures);
  4         7  
  4         244  
8              
9 4     4   1871 use Moo;
  4         39163  
  4         31  
10              
11 4     4   5378 no warnings qw(experimental::signatures);
  4         17  
  4         117  
12 4     4   1607 use namespace::clean;
  4         40261  
  4         23  
13              
14             has [qw(prematch match postmatch last_paren_match
15             captures named_captures named_captures_all)
16             ] => (
17             is => 'ro',
18             required => 1,
19             );
20              
21             has success => (
22             is => 'rwp',
23             );
24              
25             1;
26              
27             __END__