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.2203';
3              
4 16     16   9455 use strict;
  16         43  
  16         563  
5 16     16   86 use warnings;
  16         35  
  16         466  
6              
7 16     16   79 use Moose::Role;
  16         34  
  16         148  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Reader';
10              
11 26     26   111 sub _maximum_arguments { 0 }
12              
13             sub _return_value {
14 26     26   69 my $self = shift;
15 26         74 my ($slot_access) = @_;
16              
17 26         290 return 'scalar @{ (' . $slot_access . ') }';
18             }
19              
20 16     16   127 no Moose::Role;
  16         38  
  16         99  
21              
22             1;