File Coverage

blib/lib/Stepford/Trait/StepProduction.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 18 18 100.0


line stmt bran cond sub pod time code
1             package Stepford::Trait::StepProduction;
2              
3 43     43   313 use strict;
  43         91  
  43         1350  
4 43     43   212 use warnings;
  43         89  
  43         1041  
5 43     43   230 use namespace::autoclean;
  43         72  
  43         239  
6              
7             our $VERSION = '0.006000';
8              
9 43     43   3028 use Moose::Role;
  43         73  
  43         283  
10              
11             ## no critic (Subroutines::ProhibitQualifiedSubDeclarations)
12             sub Moose::Meta::Attribute::Custom::Trait::StepProduction::register_implementation
13             {
14 43     43   328797 return __PACKAGE__;
15             }
16              
17             1;
18              
19             #ABSTRACT: A trait for attributes which are a step production
20              
21             __END__
22              
23             =pod
24              
25             =encoding UTF-8
26              
27             =head1 NAME
28              
29             Stepford::Trait::StepProduction - A trait for attributes which are a step production
30              
31             =head1 VERSION
32              
33             version 0.006000
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 - 2019 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