blib/lib/ETL/Yertl/Format.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 5 | 5 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 2 | 2 | 100.0 |
pod | 0 | 1 | 0.0 |
total | 7 | 8 | 87.5 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package ETL::Yertl::Format; | ||||||
2 | our $VERSION = '0.037'; | ||||||
3 | # ABSTRACT: Base class for input/output formats | ||||||
4 | |||||||
5 | 20 | 20 | 138 | use ETL::Yertl; | |||
20 | 40 | ||||||
20 | 90 | ||||||
6 | sub new { | ||||||
7 | 448 | 448 | 0 | 538778 | my ( $class, %args ) = @_; | ||
8 | 448 | 1501 | return bless \%args, $class; | ||||
9 | } | ||||||
10 | |||||||
11 | 1; | ||||||
12 | |||||||
13 | __END__ |