File Coverage

blib/lib/Class/Scaffold/Test/UtilLoader.pm
Criterion Covered Total %
statement 25 25 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod n/a
total 34 34 100.0


line stmt bran cond sub pod time code
1 2     2   1596 use 5.008;
  2         117  
  2         140  
2 2     2   14 use warnings;
  2         2  
  2         91  
3 2     2   11 use strict;
  2         4  
  2         118  
4              
5             package Class::Scaffold::Test::UtilLoader;
6             BEGIN {
7 2     2   37 $Class::Scaffold::Test::UtilLoader::VERSION = '1.102280';
8             }
9             # ABSTRACT: Load other classes necessary for tests
10 2     2   1092 use Class::Scaffold::YAML::Marshall::Constant;
  2         4  
  2         21  
11 2     2   1154 use Class::Scaffold::YAML::Marshall::ExceptionContainer;
  2         6  
  2         22  
12 2     2   1149 use Class::Scaffold::YAML::Marshall::Concat;
  2         6  
  2         21  
13 2     2   1157 use Class::Scaffold::YAML::Marshall::PID;
  2         6  
  2         24  
14              
15             # So that we can ->make_obj('test_util_loader')
16 2     2   180 use parent 'Class::Scaffold::Storable';
  2         5  
  2         9  
17              
18             1;
19              
20              
21             __END__