File Coverage

blib/lib/Makefile/AST/Variable.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Makefile::AST::Variable;
2              
3 2     2   591 use strict;
  2         3  
  2         73  
4 2     2   11 use warnings;
  2         4  
  2         61  
5 2     2   15 use base 'Class::Accessor::Fast';
  2         4  
  2         930  
6              
7             __PACKAGE__->mk_accessors(qw{
8             name value flavor origin
9             lineno file
10             });
11              
12             1;
13