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 59     59   34435 use Mouse;
  59         197  
  59         419  
3              
4             extends 'Path::AttrRouter::Action';
5              
6 59     59   22449 no Mouse;
  59         126  
  59         361  
7              
8             sub dispatch {
9 464     464 0 7330 my ($self, $c, @args) = @_;
10 464 100       1515 return if $c->detached;
11              
12 463         2372 $self->controller->ACTION( $self, $c, @args );
13             }
14              
15             __PACKAGE__->meta->make_immutable;
16