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.2205';
3              
4 16     16   11580 use strict;
  16         48  
  16         599  
5 16     16   103 use warnings;
  16         59  
  16         555  
6              
7 16     16   176 use Moose::Role;
  16         40  
  16         154  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Reader';
10              
11 26     26   126 sub _maximum_arguments { 0 }
12              
13             sub _return_value {
14 26     26   71 my $self = shift;
15 26         89 my ($slot_access) = @_;
16              
17 26         336 return 'scalar @{ (' . $slot_access . ') }';
18             }
19              
20 16     16   154 no Moose::Role;
  16         47  
  16         118  
21              
22             1;