File Coverage

blib/lib/Data/Conveyor/Delegate/Stage.pm
Criterion Covered Total %
statement 13 14 92.8
branch n/a
condition n/a
subroutine 5 6 83.3
pod 1 1 100.0
total 19 21 90.4


line stmt bran cond sub pod time code
1 1     1   1169 use 5.008;
  1         4  
  1         198  
2 1     1   8 use strict;
  1         2  
  1         78  
3 1     1   6 use warnings;
  1         2  
  1         78  
4              
5             package Data::Conveyor::Delegate::Stage;
6             BEGIN {
7 1     1   26 $Data::Conveyor::Delegate::Stage::VERSION = '1.103130';
8             }
9             # ABSTRACT: Stage-based conveyor-belt-like ticket handling system
10              
11 1     1   5 use parent 'Class::Scaffold::Base';
  1         3  
  1         8  
12             __PACKAGE__->mk_scalar_accessors(qw(stage));
13 0     0 1   sub handle_stage_end { }
14             1;
15              
16              
17             __END__