File Coverage

blib/lib/Salus/Header.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Salus::Header;
2              
3 3     3   1908 use Rope;
  3         30655  
  3         22  
4 3     3   2260 use Rope::Autoload;
  3         8855  
  3         17  
5 3     3   2189 use Types::Standard qw/Str Int/;
  3         341769  
  3         30  
6              
7             property index => (
8             initable => 1,
9             writeable => 0,
10             configurable => 1,
11             required => 1,
12             enumerable => 1,
13             type => Int
14             );
15              
16             property name => (
17             initable => 1,
18             writeable => 0,
19             configurable => 1,
20             required => 1,
21             enumerable => 1,
22             type => Str
23             );
24              
25             property label => (
26             initable => 1,
27             writeable => 0,
28             configurable => 1,
29             required => 1,
30             enumerable => 1,
31             type => Str
32             );
33              
34             1;