File Coverage

blib/lib/Ark/Action.pm
Criterion Covered Total %
statement 9 9 100.0
branch 2 2 100.0
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package Ark::Action;
2 58     58   42649 use Mouse;
  58         129  
  58         437  
3              
4             extends 'Path::AttrRouter::Action';
5              
6 58     58   22003 no Mouse;
  58         174  
  58         475  
7              
8             sub dispatch {
9 463     463 0 7046 my ($self, $c, @args) = @_;
10 463 100       2219 return if $c->detached;
11              
12 462         3295 $self->controller->ACTION( $self, $c, @args );
13             }
14              
15             __PACKAGE__->meta->make_immutable;
16