File Coverage

blib/lib/Enbld/Target/Attribute/VersionForm.pm
Criterion Covered Total %
statement 18 18 100.0
branch 2 2 100.0
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 25 26 96.1


line stmt bran cond sub pod time code
1             package Enbld::Target::Attribute::VersionForm;
2              
3 7     7   15860 use strict;
  7         13  
  7         258  
4 7     7   30 use warnings;
  7         9  
  7         155  
5              
6 7     7   25 use Carp;
  7         8  
  7         411  
7              
8 7     7   445 use parent qw/Enbld::Target::AttributeExtension::RegEx/;
  7         244  
  7         35  
9              
10             sub initialize {
11 67     67 0 148 my ( $self, $param ) = @_;
12              
13 67 100       185 if ( $param ) {
14 65         361 $self->SUPER::initialize( $param );
15 65         115 return $self;
16             }
17              
18 2         8 require Enbld::Exception;
19 2         6 croak( Enbld::Exception->new( "Attribute 'VersionForm' isn't defined" ));
20             }
21              
22             1;