File Coverage

blib/lib/Salus/Row/Column.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::Row::Column;
2              
3 3     3   16 use Rope;
  3         7  
  3         16  
4 3     3   1055 use Rope::Autoload;
  3         6  
  3         17  
5 3     3   147 use Types::Standard qw/Str Object/;
  3         19  
  3         23  
6              
7             property header => (
8             initable => 1,
9             writeable => 0,
10             configurable => 1,
11             enumerable => 1,
12             type => Object
13             );
14              
15             property value => (
16             initable => 1,
17             writeable => 0,
18             configurable => 1,
19             enumerable => 1,
20             type => Str
21             );
22              
23             1;