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   64 use v5.14;
  5         14  
4 5     5   23 use warnings;
  5         10  
  5         152  
5              
6 5     5   17 use Moo;
  5         5  
  5         27  
7 5     5   1212 use Types::Standard qw(ArrayRef Str);
  5         7  
  5         48  
8 5     5   2334 use namespace::clean;
  5         7  
  5         41  
9              
10             extends 'AtteanX::Model::SPARQLCache::LDF';
11              
12             has 'try' => (is => 'rw', isa => Str);
13              
14             1;