File Coverage

blib/lib/Dist/Zilla/Role/StubBuild.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 13 14 92.8


line stmt bran cond sub pod time code
1             package Dist::Zilla::Role::StubBuild 6.037;
2             # ABSTRACT: provides an empty BUILD methods
3              
4 52     52   41546 use Moose::Role;
  52         119  
  52         470  
5              
6 52     52   309263 use Dist::Zilla::Pragmas;
  52         114  
  52         463  
7              
8       816 0   sub BUILD {}
9              
10 52     52   447 no Moose::Role;
  52         156  
  52         315  
11             1;
12              
13             __END__
14              
15             =pod
16              
17             =encoding UTF-8
18              
19             =head1 NAME
20              
21             Dist::Zilla::Role::StubBuild - provides an empty BUILD methods
22              
23             =head1 VERSION
24              
25             version 6.037
26              
27             =head1 PERL VERSION
28              
29             This module should work on any version of perl still receiving updates from
30             the Perl 5 Porters. This means it should work on any version of perl
31             released in the last two to three years. (That is, if the most recently
32             released version is v5.40, then this module should work on both v5.40 and
33             v5.38.)
34              
35             Although it may work on older versions of perl, no guarantee is made that the
36             minimum required version will not be increased. The version may be increased
37             for any reason, and there is no promise that patches will be accepted to
38             lower the minimum required perl.
39              
40             =head1 AUTHOR
41              
42             Ricardo SIGNES 😏 <cpan@semiotic.systems>
43              
44             =head1 COPYRIGHT AND LICENSE
45              
46             This software is copyright (c) 2026 by Ricardo SIGNES.
47              
48             This is free software; you can redistribute it and/or modify it under
49             the same terms as the Perl 5 programming language system itself.
50              
51             =cut