File Coverage

blib/lib/SpeL/Object/Faculty.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 21 21 100.0


line stmt bran cond sub pod time code
1             # -*- cperl -*-
2             # ABSTRACT: LaTeX faculty object
3              
4              
5             package SpeL::Object::Faculty;
6              
7 41     41   298 use parent 'Exporter';
  41         79  
  41         247  
8 41     41   2835 use Carp;
  41         95  
  41         2837  
9              
10 41     41   262 use SpeL::I18n;
  41         87  
  41         1426  
11              
12 41     41   269 use Data::Dumper;
  41         72  
  41         4790  
13              
14              
15              
16             sub read {
17 3     3 1 7 my $self = shift;
18 3         5 my ( $level ) = @_;
19              
20 3         11 return $SpeL::I18n::lh->maketext( "Faculty" );
21             }
22              
23             1;
24              
25             __END__