File Coverage

blib/lib/RDF/NS/URIS.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 1 1 100.0
total 22 22 100.0


line stmt bran cond sub pod time code
1             package RDF::NS::URIS;
2 1     1   64587 use v5.10;
  1         12  
3 1     1   5 use strict;
  1         2  
  1         19  
4 1     1   4 use warnings;
  1         2  
  1         46  
5              
6             our $VERSION = '20181102';
7              
8 1     1   567 use URI;
  1         6968  
  1         31  
9 1     1   7 use base 'RDF::NS';
  1         1  
  1         428  
10              
11             sub GET {
12 4     4 1 19 URI->new($_[1]);
13             }
14              
15             1;
16             __END__