File Coverage

blib/lib/Class/Scaffold/YAML/Marshall.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 18 18 100.0


line stmt bran cond sub pod time code
1 2     2   1112 use 5.008;
  2         9  
  2         101  
2 2     2   10 use warnings;
  2         4  
  2         55  
3 2     2   114 use strict;
  2         5  
  2         90  
4              
5             package Class::Scaffold::YAML::Marshall;
6             BEGIN {
7 2     2   47 $Class::Scaffold::YAML::Marshall::VERSION = '1.102280';
8             }
9             # ABSTRACT: Base class for marshalling plugins to YAML
10              
11             # So that we get a delegate() method
12 2     2   11 use parent 'Class::Scaffold::Storable';
  2         4  
  2         12  
13             1;
14              
15             __END__