blib/lib/State/Machine/Failure/Transition/Missing.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 6 | 9 | 66.6 |
branch | n/a | ||
condition | n/a | ||
subroutine | 2 | 3 | 66.6 |
pod | n/a | ||
total | 8 | 12 | 66.6 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | # State::Machine::Transition Missing Failure Class | ||||||
2 | package State::Machine::Failure::Transition::Missing; | ||||||
3 | |||||||
4 | 1 | 1 | 7 | use Bubblegum::Class; | |||
1 | 1 | ||||||
1 | 9 | ||||||
5 | 1 | 1 | 11182 | use Function::Parameters; | |||
1 | 2 | ||||||
1 | 10 | ||||||
6 | |||||||
7 | extends 'State::Machine::Failure::Transition'; | ||||||
8 | |||||||
9 | our $VERSION = '0.07'; # VERSION | ||||||
10 | |||||||
11 | 0 | 0 | method _build_message { | ||||
0 | |||||||
12 | 0 | "Transition missing." | |||||
13 | } | ||||||
14 | |||||||
15 | 1; |