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.5';
3 3     3   1538 use warnings;
  3         6  
  3         103  
4 3     3   15 use strict;
  3         7  
  3         72  
5              
6 3     3   57 use 5.012;
  3         13  
7              
8              
9             sub new
10             {
11 8     8 1 13788 my $class = shift;
12 8         18 my $self = {};
13              
14 8         22 bless $self, $class;
15              
16 8         35 $self->_init(@_);
17              
18 8         32 return $self;
19             }
20              
21              
22             1; # End of File::Dir::Dumper
23              
24             __END__