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.75';
3 5     5   85 use 5.006;
  5         17  
4 5     5   27 use strict;
  5         10  
  5         94  
5 5     5   21 use warnings;
  5         11  
  5         700  
6              
7 26     26 0 103 sub new { bless {}, $_[0] }
8 0     0 0 0 sub stringify { "" }
9 18     18 0 41 sub length { 0 }
10       9 0   sub incr {}
11 48     48 0 201 sub empty { 1 }
12 18     18 0 42 sub signature { "" }
13 3     3 0 12 sub fields { return 0 }
14 0     0 0   sub field { return "" }
15 0     0 0   sub val { return "" }
16              
17             1;