File Coverage

blib/lib/Class/Scaffold/YAML/Marshall/Constant.pm
Criterion Covered Total %
statement 16 20 80.0
branch n/a
condition n/a
subroutine 6 7 85.7
pod 1 1 100.0
total 23 28 82.1


line stmt bran cond sub pod time code
1 2     2   53 use 5.008;
  2         9  
  2         84  
2 2     2   11 use warnings;
  2         6  
  2         63  
3 2     2   11 use strict;
  2         5  
  2         133  
4              
5             package Class::Scaffold::YAML::Marshall::Constant;
6             BEGIN {
7 2     2   43 $Class::Scaffold::YAML::Marshall::Constant::VERSION = '1.102280';
8             }
9             # ABSTRACT: Marshalling plugin to get framework environment constants
10 2     2   1737 use YAML::Marshall 'constant';
  2         1019  
  2         13  
11 2     2   130 use parent 'Class::Scaffold::YAML::Marshall';
  2         4  
  2         16  
12              
13             sub yaml_load {
14 0     0 1   my $self = shift;
15 0           my $node = $self->SUPER::yaml_load(@_);
16 0           my $method = $$node;
17 0           $self->delegate->$method;
18             }
19             1;
20              
21              
22             __END__