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.035'; | ||||||
3 | # ABSTRACT: Base class for input/output formats | ||||||
4 | |||||||
5 | 18 | 18 | 117 | use ETL::Yertl; | |||
18 | 33 | ||||||
18 | 80 | ||||||
6 | sub new { | ||||||
7 | 401 | 401 | 0 | 518250 | my ( $class, %args ) = @_; | ||
8 | 401 | 1272 | return bless \%args, $class; | ||||
9 | } | ||||||
10 | |||||||
11 | 1; | ||||||
12 | |||||||
13 | __END__ |