File Coverage

blib/lib/ArangoDB/Index/Primary.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package ArangoDB::Index::Primary;
2 8     8   47 use strict;
  8         15  
  8         362  
3 8     8   77 use warnings;
  8         16  
  8         211  
4 8     8   39 use utf8;
  8         13  
  8         51  
5 8     8   350 use 5.008001;
  8         27  
  8         385  
6 8     8   63 use parent 'ArangoDB::Index';
  8         17  
  8         91  
7 8     8   560 use Class::Accessor::Lite ( ro => [qw/fields/], );
  8         21  
  8         42  
8              
9             1;
10             __END__