File Coverage

blib/lib/Gears/Router/Match.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Gears::Router::Match;
2             $Gears::Router::Match::VERSION = '0.101';
3 4     4   64 use v5.40;
  4         18  
4 4     4   53 use Mooish::Base -standard;
  4         13  
  4         58  
5              
6 4     4   64989 use Devel::StrictMode;
  4         1656  
  4         581  
7              
8             has param 'location' => (
9             (STRICT ? (isa => InstanceOf ['Gears::Router::Location']) : ()),
10             );
11              
12             has param 'matched' => (
13             (STRICT ? (isa => ArrayRef) : ()),
14             );
15              
16             __END__