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   67273 use v5.10;
  1         14  
3 1     1   5 use strict;
  1         2  
  1         20  
4 1     1   4 use warnings;
  1         2  
  1         47  
5              
6             our $VERSION = '20190227';
7              
8 1     1   659 use URI;
  1         6741  
  1         32  
9 1     1   6 use base 'RDF::NS';
  1         2  
  1         456  
10              
11             sub GET {
12 4     4 1 23 URI->new($_[1]);
13             }
14              
15             1;
16             __END__