File Coverage

blib/lib/Catmandu/Fix/Condition/is_uri.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 19 20 95.0


line stmt bran cond sub pod time code
1              
2             our $VERSION = '0.15';
3              
4             use Catmandu::Sane;
5 1     1   345293 use Moo;
  1         8  
  1         5  
6 1     1   143 use Data::Validate::URI;
  1         2  
  1         4  
7 1     1   672 use Catmandu::Fix::Has;
  1         41349  
  1         41  
8 1     1   7  
  1         2  
  1         9  
9             has path => (fix_arg => 1);
10              
11             with 'Catmandu::Fix::Condition::SimpleAllTest';
12              
13             my ($self, $var) = @_;
14             "(is_value(${var}) && Data::Validate::URI::is_uri(${var}))";
15 4     4 0 22932 }
16 4         15  
17             =head1 NAME
18              
19             Catmandu::Fix::Condition::is_uri - check of a field contains an URI
20              
21             =head1 SYNOPSIS
22              
23             if is_uri(uri_field)
24             ...
25             else
26             ...
27             end
28              
29             =head1 SEE ALSO
30              
31             L<Catmandu::Fix>
32              
33             =cut
34              
35             1;