File Coverage

blib/lib/Text/Autoformat/NullHang.pm
Criterion Covered Total %
statement 13 16 81.2
branch n/a
condition n/a
subroutine 9 12 75.0
pod 0 9 0.0
total 22 37 59.4


line stmt bran cond sub pod time code
1             package Text::Autoformat::NullHang;
2             $Text::Autoformat::NullHang::VERSION = '1.74';
3 4     4   79 use 5.006;
  4         15  
4 4     4   22 use strict;
  4         5  
  4         108  
5 4     4   19 use warnings;
  4         9  
  4         652  
6              
7 26     26 0 115 sub new { bless {}, $_[0] }
8 0     0 0 0 sub stringify { "" }
9 18     18 0 52 sub length { 0 }
10       9 0   sub incr {}
11 48     48 0 250 sub empty { 1 }
12 18     18 0 52 sub signature { "" }
13 3     3 0 14 sub fields { return 0 }
14 0     0 0   sub field { return "" }
15 0     0 0   sub val { return "" }
16              
17             1;