File Coverage

blib/lib/Gears/Router/Location/Match.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Gears::Router::Location::Match;
2             $Gears::Router::Location::Match::VERSION = '0.101';
3 1     1   813 use v5.40;
  1         5  
4 1     1   7 use Mooish::Base -standard;
  1         2  
  1         10  
5              
6 1     1   19206 use Gears::Router::Pattern::Match;
  1         3827  
  1         129  
7              
8             extends 'Gears::Router::Location';
9              
10             sub _build_pattern_obj ($self)
11 114     114   671 {
  114         148  
  114         135  
12 114         1314 return Gears::Router::Pattern::Match->new(
13             location => $self,
14             );
15             }
16              
17             __END__