File Coverage

blib/lib/WordList/Test/Dynamic/OneTwo_EachParam.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 WordList::Test::Dynamic::OneTwo_EachParam;
2              
3             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
4             our $DATE = '2021-02-23'; # DATE
5             our $DIST = 'WordList'; # DIST
6             our $VERSION = '0.7.8'; # VERSION
7              
8 1     1   2625 use strict;
  1         4  
  1         39  
9              
10 1     1   6 use WordList::Test::Dynamic::OneTwo_Each;
  1         2  
  1         52  
11             our @ISA = qw(WordList::Test::Dynamic::OneTwo_Each);
12              
13 1     1   6 use Role::Tiny::With;
  1         3  
  1         124  
14             with 'WordListRole::FirstNextResetFromEach';
15              
16             our $DYNAMIC = 1;
17              
18             our %PARAMS = (
19             foo => {
20             summary => 'Just a dummy, required parameter',
21             schema => 'str*',
22             req => 1,
23             },
24             );
25              
26             1;
27             # ABSTRACT: Wordlist that returns one, two (via implementing each_word())
28              
29             __END__