| blib/lib/Ark/Controller.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % | 
| statement | 8 | 8 | 100.0 | 
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 3 | 3 | 100.0 | 
| pod | 0 | 1 | 0.0 | 
| total | 11 | 12 | 91.6 | 
| line | stmt | bran | cond | sub | pod | time | code | 
|---|---|---|---|---|---|---|---|
| 1 | package Ark::Controller; | ||||||
| 2 | 57 | 57 | 25095 | use Mouse; | |||
| 57 | 133 | ||||||
| 57 | 294 | ||||||
| 3 | extends 'Path::AttrRouter::Controller'; | ||||||
| 4 | 57 | 57 | 20979 | no Mouse; | |||
| 57 | 100 | ||||||
| 57 | 412 | ||||||
| 5 | |||||||
| 6 | sub ACTION { | ||||||
| 7 | 463 | 463 | 0 | 1193 | my ($self, $action, $context, @args) = @_; | ||
| 8 | 463 | 2275 | $context->execute( $self, $action->name, @args ); | ||||
| 9 | } | ||||||
| 10 | |||||||
| 11 | __PACKAGE__->meta->make_immutable; |