File Coverage

blib/lib/SpeL/Object/Item.pm
Criterion Covered Total %
statement 21 24 87.5
branch n/a
condition n/a
subroutine 7 8 87.5
pod 1 1 100.0
total 29 33 87.8


line stmt bran cond sub pod time code
1             # -*- cperl -*-
2             # ABSTRACT: LaTeX Item object
3              
4              
5 41     41   263 use strict;
  41         76  
  41         1613  
6 41     41   224 use warnings;
  41         76  
  41         2594  
7             package SpeL::Object::Item;
8              
9 41     41   244 use parent 'Exporter';
  41         99  
  41         242  
10 41     41   2838 use Carp;
  41         97  
  41         2699  
11              
12 41     41   280 use SpeL::Object::Option;
  41         95  
  41         1781  
13 41     41   195 use SpeL::Object::ElementList;
  41         106  
  41         1453  
14              
15 41     41   204 use Data::Dumper;
  41         82  
  41         4286  
16              
17              
18              
19             sub read {
20 0     0 1   my $self = shift;
21 0           my ( $level ) = @_;
22 0           return '';
23             }
24             1;
25              
26             __END__