File Coverage

blib/lib/Stepford/Trait/StepDependency.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::StepDependency;
2              
3 43     43   321 use strict;
  43         99  
  43         1425  
4 43     43   429 use warnings;
  43         106  
  43         1308  
5 43     43   557 use namespace::autoclean;
  43         170  
  43         363  
6              
7             our $VERSION = '0.006000';
8              
9 43     43   3695 use Moose::Role;
  43         945  
  43         381  
10              
11             ## no critic (Subroutines::ProhibitQualifiedSubDeclarations)
12             sub Moose::Meta::Attribute::Custom::Trait::StepDependency::register_implementation
13             {
14 40     40   238919 return __PACKAGE__;
15             }
16              
17             1;
18              
19             #ABSTRACT: A trait for attributes which are a step dependency
20              
21             __END__
22              
23             =pod
24              
25             =encoding UTF-8
26              
27             =head1 NAME
28              
29             Stepford::Trait::StepDependency - A trait for attributes which are a step dependency
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