File Coverage

blib/lib/Data/Object/Array.pm
Criterion Covered Total %
statement 12 17 70.5
branch 0 2 0.0
condition 0 6 0.0
subroutine 4 5 80.0
pod 0 1 0.0
total 16 31 51.6


line stmt bran cond sub pod time code
1             # ABSTRACT: An Array Object for Perl 5
2             package Data::Object::Array;
3              
4 1     1   870 use 5.10.0;
  1         4  
  1         63  
5              
6 1     1   823 use Moo 'with';
  1         21633  
  1         9  
7 1     1   2224 use Scalar::Util 'blessed';
  1         2  
  1         136  
8 1     1   861 use Types::Standard 'ArrayRef';
  1         90284  
  1         18  
9              
10             with 'Data::Object::Role::Array';
11              
12             our $VERSION = '0.02'; # VERSION
13              
14             sub new {
15 0     0 0   my $class = shift;
16 0           my $data = shift;
17              
18 0   0       $class = ref($class) || $class;
19 0 0 0       $data = ArrayRef->($data)
20             unless blessed($data) && $data->isa($class);
21              
22 0           return bless $data, $class;
23             }
24              
25             1;
26              
27             __END__