/tmp/nCRbGnr6SR | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 6 | 6 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 2 | 2 | 100.0 |
pod | n/a | ||
total | 8 | 8 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | my $order = 0; | ||||||
2 | |||||||
3 | use Mite::Shim; | ||||||
4 | 2 | 2 | 4688263 | extends 'MyTest::Parent'; | |||
2 | 10 | ||||||
2 | 37 | ||||||
5 | has third => | ||||||
6 | is => 'ro', | ||||||
7 | default => sub { ++$order }; | ||||||
8 | has fourth => | ||||||
9 | is => 'ro', | ||||||
10 | default => sub { ++$order }; | ||||||
11 | |||||||
12 | use Mite::Shim; | ||||||
13 | has first => | ||||||
14 | 2 | 2 | 407 | is => 'ro', | |||
2 | 4 | ||||||
2 | 9 | ||||||
15 | default => sub { ++$order }; | ||||||
16 | has second => | ||||||
17 | is => 'ro', | ||||||
18 | default => sub { ++$order }; | ||||||
19 | |||||||
20 | 1; |