File Coverage

blib/lib/YAML/Tag.pm
Criterion Covered Total %
statement 13 17 76.4
branch n/a
condition n/a
subroutine 5 7 71.4
pod 0 3 0.0
total 18 27 66.6


line stmt bran cond sub pod time code
1 49     49   289 use strict; use warnings;
  49     49   81  
  49         1213  
  49         205  
  49         84  
  49         2868  
2             package YAML::Tag;
3              
4 49     49   25860 use overload '""' => sub { ${$_[0]} };
  49     0   17318  
  49         449  
  0         0  
  0         0  
5              
6             sub new {
7 99     99 0 192 my ($class, $self) = @_;
8 99         297 bless \$self, $class
9             }
10              
11             sub short {
12 100     100 0 167 ${$_[0]}
  100         559  
13             }
14              
15             sub canonical {
16 0     0 0   ${$_[0]}
  0            
17             }
18              
19             1;