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   317202 use v5.28;
  50         282  
6 50     50   268 use strict;
  50         94  
  50         1382  
7 50     50   222 use warnings;
  50         84  
  50         3480  
8              
9             our $VERSION = '0.33';
10              
11 50     50   901 use Role::Tiny;
  50         7715  
  50         389  
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__