blib/lib/Mason/Test/RootClass/Interp.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::RootClass::Interp; | ||||||
2 | $Mason::Test::RootClass::Interp::VERSION = '2.23'; | ||||||
3 | 1 | 1 | 430 | use Moose; | |||
1 | 2 | ||||||
1 | 9 | ||||||
4 | extends 'Mason::Interp'; | ||||||
5 | |||||||
6 | before 'run' => sub { | ||||||
7 | print STDERR "starting interp run\n"; | ||||||
8 | }; | ||||||
9 | |||||||
10 | __PACKAGE__->meta->make_immutable(); | ||||||
11 | |||||||
12 | 1; |