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   268 use strict; use warnings;
  49     49   79  
  49         1103  
  49         198  
  49         66  
  49         2592  
2             package YAML::Tag;
3              
4 49     49   19746 use overload '""' => sub { ${$_[0]} };
  49     0   16828  
  49         352  
  0         0  
  0         0  
5              
6             sub new {
7 96     96 0 166 my ($class, $self) = @_;
8 96         225 bless \$self, $class
9             }
10              
11             sub short {
12 97     97 0 118 ${$_[0]}
  97         498  
13             }
14              
15             sub canonical {
16 0     0 0   ${$_[0]}
  0            
17             }
18              
19             1;