File Coverage

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


line stmt bran cond sub pod time code
1 1     1   1384667 use strict;
  1         2  
  1         49  
2 1     1   5 use warnings;
  1         1  
  1         58  
3              
4             package Dist::Zilla::Plugin::PortabilityTests;
5             # ABSTRACT: (DEPRECATED) Release tests for portability
6              
7             our $VERSION = '2.001000';
8              
9 1     1   4 use Moose;
  1         1  
  1         6  
10             extends 'Dist::Zilla::Plugin::Test::Portability';
11              
12             before register_component => sub {
13             warnings::warnif('deprecated',
14             "!!! [PortabilityTests] is deprecated and will be removed in a future release; replace it with [Test::Portability].\n",
15             );
16             };
17              
18             __PACKAGE__->meta->make_immutable;
19              
20             __END__
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.001000
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             =head1 AUTHORS
54              
55             =over 4
56              
57             =item *
58              
59             Marcel Gruenauer <marcel@cpan.org>
60              
61             =item *
62              
63             Randy Stauner <rwstauner@cpan.org>
64              
65             =item *
66              
67             Mike Doherty <doherty@cpan.org>
68              
69             =back
70              
71             =head1 COPYRIGHT AND LICENSE
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