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.030;
2             # ABSTRACT: provides an empty BUILD methods
3              
4 52     52   35776 use Moose::Role;
  52         182  
  52         420  
5              
6 52     52   275831 use Dist::Zilla::Pragmas;
  52         175  
  52         402  
7              
8       816 0   sub BUILD {}
9              
10 52     52   474 no Moose::Role;
  52         306  
  52         383  
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.030
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 released
31             in the last two to three years. (That is, if the most recently released
32             version is v5.40, then this module should work on both v5.40 and v5.38.)
33              
34             Although it may work on older versions of perl, no guarantee is made that the
35             minimum required version will not be increased. The version may be increased
36             for any reason, and there is no promise that patches will be accepted to lower
37             the minimum required perl.
38              
39             =head1 AUTHOR
40              
41             Ricardo SIGNES 😏 <cpan@semiotic.systems>
42              
43             =head1 COPYRIGHT AND LICENSE
44              
45             This software is copyright (c) 2023 by Ricardo SIGNES.
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