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 1     1   2233 use strict;
  1         3  
  1         33  
4              
5 1     1   6 use WordList::Test::Dynamic::OneTwo_Each;
  1         3  
  1         44  
6             our @ISA = qw(WordList::Test::Dynamic::OneTwo_Each);
7              
8 1     1   5 use Role::Tiny::With;
  1         2  
  1         143  
9             with 'WordListRole::FirstNextResetFromEach';
10              
11             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
12             our $DATE = '2021-09-26'; # DATE
13             our $DIST = 'WordList'; # DIST
14             our $VERSION = '0.7.11'; # VERSION
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__