File Coverage

blib/lib/Stepford/Role/Step/Unserializable.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Stepford::Role::Step::Unserializable;
2              
3 2     2   4528 use strict;
  2         6  
  2         60  
4 2     2   12 use warnings;
  2         6  
  2         54  
5 2     2   12 use namespace::autoclean;
  2         6  
  2         18  
6              
7             our $VERSION = '0.006001';
8              
9 2     2   196 use Moose::Role;
  2         4  
  2         22  
10              
11             1;
12              
13             # ABSTRACT: A role for steps with unserializable productions
14              
15             __END__
16              
17             =pod
18              
19             =encoding UTF-8
20              
21             =head1 NAME
22              
23             Stepford::Role::Step::Unserializable - A role for steps with unserializable productions
24              
25             =head1 VERSION
26              
27             version 0.006001
28              
29             =head1 DESCRIPTION
30              
31             If your step class consumes this role, then that step will not be run in a
32             child process even when running a parallel plan with L<Stepford::Runner>. See
33             the L<Stepford::Runner> docs for more details.
34              
35             =head1 SUPPORT
36              
37             Bugs may be submitted through L<https://github.com/maxmind/Stepford/issues>.
38              
39             =head1 AUTHOR
40              
41             Dave Rolsky <drolsky@maxmind.com>
42              
43             =head1 COPYRIGHT AND LICENSE
44              
45             This software is copyright (c) 2014 - 2023 by MaxMind, Inc.
46              
47             This is free software; you can redistribute it and/or modify it under
48             the same terms as the Perl 5 programming language system itself.
49              
50             =cut