File Coverage

blib/lib/SpeL/Object/MathUnit.pm
Criterion Covered Total %
statement 18 21 85.7
branch n/a
condition n/a
subroutine 6 7 85.7
pod 1 1 100.0
total 25 29 86.2


line stmt bran cond sub pod time code
1             # -*- cperl -*-
2             # ABSTRACT: LaTeX mathelement object
3              
4              
5 41     41   292 use strict;
  41         92  
  41         1798  
6 41     41   214 use warnings;
  41         111  
  41         4180  
7             package SpeL::Object::MathUnit;
8              
9 41     41   20396 use SpeL::Object::Relation;
  41         174  
  41         2199  
10              
11 41     41   289 use parent 'Exporter';
  41         82  
  41         195  
12 41     41   2297 use Carp;
  41         95  
  41         2442  
13              
14 41     41   249 use Data::Dumper;
  41         86  
  41         3984  
15              
16              
17              
18             sub read {
19 0     0 1   my $self = shift;
20 0           my ( $level ) = @_;
21              
22 0           return $self->{''};
23             }
24              
25             1;
26              
27             __END__