File Coverage

blib/lib/AtteanX/Query/Cache/Analyzer/Model.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package AtteanX::Query::Cache::Analyzer::Model;
2              
3 5     5   59 use v5.14;
  5         14  
4 5     5   20 use warnings;
  5         5  
  5         144  
5              
6 5     5   15 use Moo;
  5         7  
  5         26  
7 5     5   1220 use Types::Standard qw(ArrayRef Str);
  5         5  
  5         46  
8 5     5   2329 use namespace::clean;
  5         10  
  5         35  
9              
10             extends 'AtteanX::Model::SPARQLCache::LDF';
11              
12             has 'try' => (is => 'rw', isa => Str);
13              
14             1;