File Coverage

examples/synopsis.pl
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 13 13 100.0


line stmt bran cond sub pod time code
1 1     1   5763 use warnings;
  1         2  
  1         63  
2 1     1   20 use 5.020;
  1         3  
3 1     1   615 use Data::Section::Pluggable;
  1         59217  
  1         1750  
4              
5 1         285474 my $dsp = Data::Section::Pluggable->new
6             ->add_plugin('yaml');
7              
8             # prints "Welcome to Perl"
9 1         128 say $dsp->get_data_section('hello.yml')->{message};
10              
11             __DATA__