File Coverage

blib/lib/File/Dir/Dumper/Base.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package File::Dir::Dumper::Base;
2             $File::Dir::Dumper::Base::VERSION = '0.6.6';
3 3     3   1541 use warnings;
  3         6  
  3         102  
4 3     3   15 use strict;
  3         6  
  3         71  
5              
6 3     3   62 use 5.012;
  3         14  
7              
8              
9             sub new
10             {
11 8     8 1 13958 my $class = shift;
12 8         20 my $self = {};
13              
14 8         20 bless $self, $class;
15              
16 8         35 $self->_init(@_);
17              
18 8         28 return $self;
19             }
20              
21              
22             1; # End of File::Dir::Dumper
23              
24             __END__