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   368 use strict;
  43         135  
  43         1650  
4 43     43   282 use warnings;
  43         138  
  43         1485  
5 43     43   262 use namespace::autoclean;
  43         129  
  43         484  
6              
7             our $VERSION = '0.006001';
8              
9 43     43   4281 use Moose::Role;
  43         1088  
  43         450  
10              
11             ## no critic (Subroutines::ProhibitQualifiedSubDeclarations)
12             sub Moose::Meta::Attribute::Custom::Trait::StepDependency::register_implementation
13             {
14 40     40   270796 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.006001
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