File Coverage

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