| lib/File/Gettext/ResultSource.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 File::Gettext::ResultSource; | ||||||
| 2 | |||||||
| 3 | 1 | 1 | 5 | use namespace::autoclean; | |||
| 1 | 1 | ||||||
| 1 | 5 | ||||||
| 4 | |||||||
| 5 | 1 | 1 | 55 | use File::DataClass::Types qw( HashRef ); | |||
| 1 | 2 | ||||||
| 1 | 6 | ||||||
| 6 | 1 | 1 | 401 | use Moo; | |||
| 1 | 1 | ||||||
| 1 | 8 | ||||||
| 7 | |||||||
| 8 | extends q(File::DataClass::ResultSource); | ||||||
| 9 | |||||||
| 10 | has 'language_dependent' => is => 'ro', isa => HashRef, default => sub { {} }; | ||||||
| 11 | |||||||
| 12 | 1; | ||||||
| 13 | |||||||
| 14 | __END__ |