File Coverage

blib/lib/Data/Object/Autobox/Common.pm
Criterion Covered Total %
statement 13 23 56.5
branch n/a
condition n/a
subroutine 5 15 33.3
pod 0 11 0.0
total 18 49 36.7


line stmt bran cond sub pod time code
1             package Data::Object::Autobox::Common;
2              
3 2     2   687 use 5.010;
  2         5  
  2         63  
4              
5 2     2   14 use strict;
  2         2  
  2         49  
6 2     2   7 use warnings;
  2         2  
  2         38  
7              
8 2     2   7 use Data::Object ();
  2         1  
  2         353  
9              
10             our $VERSION = '0.13'; # VERSION
11              
12             sub array {
13 1     1 0 3586 goto &Data::Object::data_array;
14             }
15              
16             sub code {
17 0     0 0   goto &Data::Object::data_code;
18             }
19              
20             sub float {
21 0     0 0   goto &Data::Object::data_float;
22             }
23              
24             sub hash {
25 0     0 0   goto &Data::Object::data_hash;
26             }
27              
28             sub integer {
29 0     0 0   goto &Data::Object::data_integer;
30             }
31              
32             sub number {
33 0     0 0   goto &Data::Object::data_number;
34             }
35              
36             sub regexp {
37 0     0 0   goto &Data::Object::data_regexp;
38             }
39              
40             sub scalar {
41 0     0 0   goto &Data::Object::data_scalar;
42             }
43              
44             sub string {
45 0     0 0   goto &Data::Object::data_string;
46             }
47              
48             sub undef {
49 0     0 0   goto &Data::Object::data_undef;
50             }
51              
52             sub universal {
53 0     0 0   goto &Data::Object::data_universal;
54             }
55              
56             1;