File Coverage

blib/lib/Class/Scaffold/YAML/Marshall/Concat.pm
Criterion Covered Total %
statement 16 19 84.2
branch n/a
condition n/a
subroutine 6 7 85.7
pod 1 1 100.0
total 23 27 85.1


line stmt bran cond sub pod time code
1 2     2   34 use 5.008;
  2         7  
  2         86  
2 2     2   12 use warnings;
  2         10  
  2         55  
3 2     2   15 use strict;
  2         4  
  2         124  
4              
5             package Class::Scaffold::YAML::Marshall::Concat;
6             BEGIN {
7 2     2   46 $Class::Scaffold::YAML::Marshall::Concat::VERSION = '1.102280';
8             }
9             # ABSTRACT: Marshalling plugin to join array elements to a string
10 2     2   10 use YAML::Marshall 'concat';
  2         3  
  2         13  
11 2     2   99 use parent 'Class::Scaffold::YAML::Marshall';
  2         4  
  2         13  
12              
13             sub yaml_load {
14 0     0 1   my $self = shift;
15 0           my $node = $self->SUPER::yaml_load(@_);
16 0           join '' => @$node;
17             }
18             1;
19              
20              
21             __END__