File Coverage

blib/lib/Data/Printer/Filter/OBJECT.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 12 15 80.0


line stmt bran cond sub pod time code
1             package Data::Printer::Filter::OBJECT;
2 35     35   255 use strict;
  35         69  
  35         1038  
3 35     35   174 use warnings;
  35         73  
  35         844  
4 35     35   175 use Data::Printer::Filter;
  35         71  
  35         232  
5              
6             filter 'OBJECT' => \&parse;
7              
8             sub parse {
9 0     0 0   return '(opaque object)';
10             };
11              
12             1;