File Coverage

blib/lib/Moose/Meta/Method/Accessor/Native/Array/count.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 22 22 100.0


line stmt bran cond sub pod time code
1             package Moose::Meta::Method::Accessor::Native::Array::count;
2             our $VERSION = '2.2206';
3              
4 16     16   10601 use strict;
  16         58  
  16         586  
5 16     16   104 use warnings;
  16         37  
  16         468  
6              
7 16     16   116 use Moose::Role;
  16         49  
  16         138  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Reader';
10              
11 26     26   120 sub _maximum_arguments { 0 }
12              
13             sub _return_value {
14 26     26   89 my $self = shift;
15 26         119 my ($slot_access) = @_;
16              
17 26         310 return 'scalar @{ (' . $slot_access . ') }';
18             }
19              
20 16     16   149 no Moose::Role;
  16         46  
  16         108  
21              
22             1;