File Coverage

/tmp/ezpGq1he3d
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 3     3   7703637 extends 'MyTest::Parent';
  3         9  
  3         40  
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 3     3   389 is => 'ro',
  3         3  
  3         13  
15             default => sub { ++$order };
16             has second =>
17             is => 'ro',
18             default => sub { ++$order };
19              
20             1;