blib/lib/Data/Scan/Role/Consumer.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 | 1 | 1 | 10107 | use strict; | |||
1 | 2 | ||||||
1 | 34 | ||||||
2 | 1 | 1 | 5 | use warnings FATAL => 'all'; | |||
1 | 3 | ||||||
1 | 69 | ||||||
3 | |||||||
4 | package Data::Scan::Role::Consumer; | ||||||
5 | 1 | 1 | 6 | use Moo::Role; | |||
1 | 2 | ||||||
1 | 5 | ||||||
6 | |||||||
7 | # ABSTRACT: Data::Scan consumer role | ||||||
8 | |||||||
9 | our $VERSION = '0.009'; # VERSION | ||||||
10 | |||||||
11 | our $AUTHORITY = 'cpan:JDDPAUSE'; # AUTHORITY | ||||||
12 | |||||||
13 | |||||||
14 | requires 'dsstart'; | ||||||
15 | requires 'dsopen'; | ||||||
16 | requires 'dsread'; | ||||||
17 | requires 'dsclose'; | ||||||
18 | requires 'dsend'; | ||||||
19 | |||||||
20 | |||||||
21 | 1; | ||||||
22 | |||||||
23 | __END__ |