File Coverage

blib/lib/Iterator/Flex/Role/State.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Iterator::Flex::Role::State;
2              
3             # ABSTRACT: abstract interface role for State
4              
5 50     50   192929 use v5.28;
  50         142  
6 50     50   204 use strict;
  50         72  
  50         981  
7 50     50   171 use warnings;
  50         67  
  50         2755  
8              
9             our $VERSION = '0.34';
10              
11 50     50   617 use Role::Tiny;
  50         4819  
  50         297  
12              
13             requires 'set_state';
14              
15             1;
16              
17             #
18             # This file is part of Iterator-Flex
19             #
20             # This software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory.
21             #
22             # This is free software, licensed under:
23             #
24             # The GNU General Public License, Version 3, June 2007
25             #
26              
27             __END__