File Coverage

blib/lib/YAML/Old/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 45     45   238 use strict; use warnings;
  45     45   90  
  45         943  
  45         189  
  45         82  
  45         2204  
2             package YAML::Old::Tag;
3              
4 45     45   6615 use overload '""' => sub { ${$_[0]} };
  45     0   9575  
  45         1297  
  0         0  
  0         0  
5              
6             sub new {
7 97     97 0 196 my ($class, $self) = @_;
8 97         302 bless \$self, $class
9             }
10              
11             sub short {
12 98     98 0 162 ${$_[0]}
  98         501  
13             }
14              
15             sub canonical {
16 0     0 0   ${$_[0]}
  0            
17             }
18              
19             1;