blib/lib/Path/Classy/Dir.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 12 | 12 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 4 | 4 | 100.0 |
pod | n/a | ||
total | 16 | 16 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | |||||||
2 | package Path::Classy::Dir; | ||||||
3 | |||||||
4 | 1 | 1 | 30 | use 5.006; | |||
1 | 3 | ||||||
1 | 42 | ||||||
5 | 1 | 1 | 6 | use strict; | |||
1 | 2 | ||||||
1 | 36 | ||||||
6 | 1 | 1 | 6 | use warnings; | |||
1 | 2 | ||||||
1 | 78 | ||||||
7 | |||||||
8 | our $VERSION = '0.002_0'; | ||||||
9 | our @ISA; | ||||||
10 | |||||||
11 | BEGIN { | ||||||
12 | 1 | 1 | 5 | require Path::Classy::Entity; | |||
13 | 1 | 5 | require Path::Class::Dir; | ||||
14 | 1 | 46 | @ISA = qw(Path::Class::Dir Path::Classy::Entity); | ||||
15 | } | ||||||
16 | |||||||
17 | 1; |