File Coverage

blib/lib/Enbld/Target/Attribute/DefaultArgument.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package Enbld::Target::Attribute::DefaultArgument;
2              
3 2     2   3449 use strict;
  2         4  
  2         76  
4 2     2   10 use warnings;
  2         3  
  2         65  
5              
6 2     2   9 use parent qw/Enbld::Target::AttributeExtension::Command/;
  2         3  
  2         10  
7              
8             sub is_omitable {
9 30     30 0 257 return 1;
10             }
11              
12             1;