File Coverage

blib/lib/Data/Dumper/AutoEncode/AsDumper.pm
Criterion Covered Total %
statement 19 19 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 0 1 0.0
total 26 27 96.3


line stmt bran cond sub pod time code
1             package Data::Dumper::AutoEncode::AsDumper;
2              
3             our $VERSION = '1.00';
4              
5 4     4   243060 use strict; use warnings; use utf8;
  4     4   37  
  4     4   112  
  4         22  
  4         8  
  4         90  
  4         656  
  4         20  
  4         22  
6 4     4   2064 use Import::Into;
  4         11226  
  4         123  
7 4     4   1941 use Data::Dumper::AutoEncode ();
  4         57454  
  4         210  
8              
9             $Data::Dumper::Indent = 1;
10             $Data::Dumper::Quotekeys = 0;
11             $Data::Dumper::Sortkeys = 1;
12             $Data::Dumper::Terse = 1;
13             $Data::Dumper::Trailingcomma = 1;
14              
15 4     4   31 use parent 'Exporter';
  4         9  
  4         19  
16             our @EXPORT = 'Dumper';
17              
18 3     3 0 4065 sub Dumper { goto &Data::Dumper::AutoEncode::eDumper }
19              
20             __PACKAGE__->import::into('main');
21              
22             1; # return true
23              
24             __END__