File Coverage

blib/lib/Dist/Zilla/Plugin/MinimumVersionTests.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1 1     1   3224223 use 5.008;
  1         4  
2 1     1   7 use strict;
  1         2  
  1         28  
3 1     1   6 use warnings;
  1         2  
  1         63  
4              
5             package Dist::Zilla::Plugin::MinimumVersionTests;
6             # ABSTRACT: Release tests for minimum required versions
7              
8             our $VERSION = '2.000010';
9              
10 1     1   6 use Moose;
  1         2  
  1         9  
11             extends 'Dist::Zilla::Plugin::Test::MinimumVersion';
12              
13 1     1   7258 use namespace::autoclean;
  1         2  
  1         12  
14              
15             #pod =head1 SYNOPSIS
16             #pod
17             #pod In C<dist.ini>:
18             #pod
19             #pod [Test::MinimumVersion]
20             #pod
21             #pod =cut
22              
23             before register_component => sub {
24             warn '!!! [MinimumVersionTests] is deprecated and will be removed in a future release; replace it with [Test::MinimumVersion]';
25             };
26              
27             __PACKAGE__->meta->make_immutable;
28             1;
29              
30             __END__
31              
32             =pod
33              
34             =encoding UTF-8
35              
36             =head1 NAME
37              
38             Dist::Zilla::Plugin::MinimumVersionTests - Release tests for minimum required versions
39              
40             =head1 VERSION
41              
42             version 2.000010
43              
44             =head1 SYNOPSIS
45              
46             In C<dist.ini>:
47              
48             [Test::MinimumVersion]
49              
50             =head1 SUPPORT
51              
52             Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=Dist-Zilla-Plugin-Test-MinimumVersion>
53             (or L<bug-Dist-Zilla-Plugin-Test-MinimumVersion@rt.cpan.org|mailto:bug-Dist-Zilla-Plugin-Test-MinimumVersion@rt.cpan.org>).
54              
55             There is also a mailing list available for users of this distribution, at
56             L<http://dzil.org/#mailing-list>.
57              
58             There is also an irc channel available for users of this distribution, at
59             L<C<#distzilla> on C<irc.perl.org>|irc://irc.perl.org/#distzilla>.
60              
61             =head1 AUTHORS
62              
63             =over 4
64              
65             =item *
66              
67             Mike Doherty <doherty@cpan.org>
68              
69             =item *
70              
71             Marcel Grünauer <marcel@cpan.org>
72              
73             =back
74              
75             =head1 COPYRIGHT AND LICENCE
76              
77             This software is copyright (c) 2010 by Mike Doherty.
78              
79             This is free software; you can redistribute it and/or modify it under
80             the same terms as the Perl 5 programming language system itself.
81              
82             =cut