File Coverage

blib/lib/Dist/Zilla/Plugin/PortabilityTests.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


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