File Coverage

blib/lib/SpeL/Object/VerbatimEnvironment.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 verbatimenvironment object
3              
4              
5 41     41   270 use strict;
  41         97  
  41         1723  
6 41     41   217 use warnings;
  41         83  
  41         2408  
7             package SpeL::Object::VerbatimEnvironment;
8              
9 41     41   17618 use SpeL::Object::Option;
  41         123  
  41         2126  
10 41     41   820 use SpeL::Object::ElementList;
  41         81  
  41         1745  
11              
12 41     41   197 use parent 'Exporter';
  41         73  
  41         192  
13 41     41   2363 use Carp;
  41         118  
  41         2216  
14              
15 41     41   1146 use Data::Dumper;
  41         14077  
  41         4676  
16              
17              
18              
19             sub read {
20 0     0 1   my $self = shift;
21 0           my ( $level ) = @_;
22              
23 0           return $self->{verbatimcontent};
24             }
25              
26              
27             1;
28              
29             __END__