File Coverage

blib/lib/Data/Section/Pluggable/Role/FormatContentPlugin.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1 1     1   219287 use warnings;
  1         2  
  1         83  
2 1     1   17 use 5.020;
  1         4  
3 1     1   4 use true;
  1         1  
  1         7  
4 1     1   875 use experimental qw( signatures );
  1         3  
  1         60  
5              
6             package Data::Section::Pluggable::Role::FormatContentPlugin 0.05 {
7              
8             # ABSTRACT: Plugin role for Data::Section::Writer
9              
10 1     1   175 use Role::Tiny;
  1         2  
  1         5  
11             requires 'extensions';
12             requires 'format_content';
13              
14             }
15              
16             __END__