File Coverage

blib/lib/ExtUtils/Builder/Action/Primitive.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


line stmt bran cond sub pod time code
1             package ExtUtils::Builder::Action::Primitive;
2             $ExtUtils::Builder::Action::Primitive::VERSION = '0.020';
3 14     14   244294 use strict;
  14         37  
  14         641  
4 14     14   77 use warnings;
  14         33  
  14         880  
5              
6 14     14   86 use parent 'ExtUtils::Builder::Action';
  14         29  
  14         143  
7              
8             sub flatten {
9 21     21 1 37 my $self = shift;
10 21         106 return $self;
11             }
12              
13             1;
14              
15             # ABSTRACT: A base role for primitive action classes
16              
17             __END__