File Coverage

blib/lib/Gears/Context.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Gears::Context;
2             $Gears::Context::VERSION = '0.101';
3 1     1   1033 use v5.40;
  1         4  
4 1     1   5 use Mooish::Base -standard;
  1         1  
  1         9  
5              
6 1     1   12135 use Devel::StrictMode;
  1         426  
  1         105  
7              
8             has param 'app' => (
9             (STRICT ? (isa => InstanceOf ['Gears::App']) : ()),
10             );
11              
12             __END__