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.4';
3 5     5   2463 use warnings;
  5         11  
  5         164  
4 5     5   25 use strict;
  5         8  
  5         92  
5              
6 5     5   76 use 5.012;
  5         17  
7              
8              
9             sub new
10             {
11 13     13 1 193172 my $class = shift;
12 13         48 my $self = {};
13              
14 13         49 bless $self, $class;
15              
16 13         263 $self->_init(@_);
17              
18 13         46 return $self;
19             }
20              
21              
22             1; # End of File::Dir::Dumper
23              
24             __END__