blib/lib/Git/Deploy/Hook.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 6 | 8 | 75.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 2 | 3 | 66.6 |
pod | 0 | 1 | 0.0 |
total | 8 | 12 | 66.6 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Git::Deploy::Hook; | ||||||
2 | 1 | 1 | 3231 | use strict; | |||
1 | 3 | ||||||
1 | 84 | ||||||
3 | 1 | 1 | 7 | use warnings FATAL => "all"; | |||
1 | 1 | ||||||
1 | 92 | ||||||
4 | |||||||
5 | sub new { | ||||||
6 | 0 | 0 | 0 | my ($class, %args) = @_; | |||
7 | 0 | bless \%args => $class; | |||||
8 | } | ||||||
9 | |||||||
10 | 1; |