File Coverage

blib/lib/Thunderhorse/Module.pm
Criterion Covered Total %
statement 5 5 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 7 7 100.0


line stmt bran cond sub pod time code
1             package Thunderhorse::Module;
2             $Thunderhorse::Module::VERSION = '0.102';
3 5     5   997838 use v5.40;
  5         23  
4 5     5   67 use Mooish::Base -standard;
  5         14  
  5         61  
5              
6             extends 'Gears::Component';
7              
8             has extended 'app' => (
9             handles => [
10             qw(
11             add_method
12             add_middleware
13             add_hook
14             )
15             ],
16             );
17              
18             has param 'config' => (
19             isa => HashRef,
20             );
21              
22             __END__