File Coverage

blib/lib/Data/Transmute/Rules/Example.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Data::Transmute::Rules::Example;
2              
3 1     1   9 use strict;
  1         2  
  1         38  
4 1     1   5 use warnings;
  1         2  
  1         87  
5              
6             our @RULES = (
7             [create_hash_key => {name=>'a', value=>1}],
8             [create_hash_key => {name=>'b', value=>2}],
9             [rename_hash_key => {from=>'c', to=>'d'}],
10             );
11              
12             1;
13             # ABSTRACT: Example rules module
14              
15             __END__