File Coverage

blib/lib/Data/Tersify/Summary.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Data::Tersify::Summary;
2              
3 1     1   1614 use strict;
  1         2  
  1         25  
4 1     1   5 use warnings;
  1         1  
  1         46  
5              
6             =head1 NAME
7              
8             Data::Tersify::Summary - a summary of a verbose object
9              
10             =head1 DESCRIPTION
11              
12             Data::Tersify::Summary objects are generated when Data::Tersify finds an
13             object that it knows how to summarise. They're simple blessed scalars
14             describing the object, or blessed hashrefs or arrayrefs that match the
15             object's internal status. You can't do anything useful with them.
16              
17             =cut
18              
19             1;