| blib/lib/Mason/Test/Plugins/Notify/Request.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 3 | 3 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 1 | 1 | 100.0 |
| pod | n/a | ||
| total | 4 | 4 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package Mason::Test::Plugins::Notify::Request; | ||||||
| 2 | $Mason::Test::Plugins::Notify::Request::VERSION = '2.24'; | ||||||
| 3 | 1 | 1 | 629 | use Mason::PluginRole; | |||
| 1 | 2 | ||||||
| 1 | 7 | ||||||
| 4 | |||||||
| 5 | before 'run' => sub { | ||||||
| 6 | my ( $self, $path ) = @_; | ||||||
| 7 | print STDERR "starting request run - $path\n"; | ||||||
| 8 | }; | ||||||
| 9 | |||||||
| 10 | before 'comp' => sub { | ||||||
| 11 | my ( $self, $path ) = @_; | ||||||
| 12 | print STDERR "starting request comp - $path\n"; | ||||||
| 13 | }; | ||||||
| 14 | |||||||
| 15 | 1; |