blib/lib/Git/Validate/HasLine.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 Git::Validate::HasLine; | ||||||
2 | $Git::Validate::HasLine::VERSION = '0.001001'; | ||||||
3 | 1 | 1 | 7797 | use Moo::Role; | |||
1 | 2 | ||||||
1 | 6 | ||||||
4 | |||||||
5 | has line => ( | ||||||
6 | is => 'ro', | ||||||
7 | required => 1, | ||||||
8 | ); | ||||||
9 | |||||||
10 | has line_number => ( | ||||||
11 | is => 'ro', | ||||||
12 | required => 1, | ||||||
13 | ); | ||||||
14 | |||||||
15 | 1; |