File Coverage

blib/lib/Regexp/Common/URI/file.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 Regexp::Common::URI::file;
2              
3 72     72   275 use Regexp::Common qw /pattern clean no_defaults/;
  72         76  
  72         323  
4 72     72   266 use Regexp::Common::URI qw /register_uri/;
  72         82  
  72         2649  
5 72     72   22982 use Regexp::Common::URI::RFC1738 qw /$host $fpath/;
  72         187  
  72         8042  
6              
7 72     72   314 use strict;
  72         78  
  72         1153  
8 72     72   208 use warnings;
  72         134  
  72         1562  
9              
10 72     72   205 use vars qw /$VERSION/;
  72         85  
  72         6097  
11             $VERSION = '2017040401';
12              
13              
14             my $scheme = 'file';
15             my $uri = "(?k:(?k:$scheme)://(?k:(?k:(?:$host|localhost)?)" .
16             "(?k:/(?k:$fpath))))";
17              
18             register_uri $scheme => $uri;
19              
20             pattern name => [qw (URI file)],
21             create => $uri,
22             ;
23              
24             1;
25              
26             __END__