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 | 56 | 56 | 38129 | use Mouse; | |||
56 | 133 | ||||||
56 | 368 | ||||||
3 | extends 'Path::AttrRouter::Controller'; | ||||||
4 | 56 | 56 | 22952 | no Mouse; | |||
56 | 132 | ||||||
56 | 285 | ||||||
5 | |||||||
6 | sub ACTION { | ||||||
7 | 462 | 462 | 0 | 1096 | my ($self, $action, $context, @args) = @_; | ||
8 | 462 | 2783 | $context->execute( $self, $action->name, @args ); | ||||
9 | } | ||||||
10 | |||||||
11 | __PACKAGE__->meta->make_immutable; |