File Coverage

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


line stmt bran cond sub pod time code
1 1     1   1701547 use 5.008;
  1         3  
2 1     1   3 use strict;
  1         2  
  1         17  
3 1     1   3 use warnings;
  1         1  
  1         43  
4              
5             package Dist::Zilla::Plugin::PortabilityTests;
6             # ABSTRACT: (DEPRECATED) Release tests for portability
7             our $VERSION = '2.000007'; # VERSION
8 1     1   4 use Moose;
  1         1  
  1         6  
9             extends 'Dist::Zilla::Plugin::Test::Portability';
10              
11             before register_component => sub {
12                 warn '!!! [PortabilityTests] is deprecated and will be removed in a future release; please use [Test::Portability].';
13             };
14              
15              
16             1;
17              
18             __END__
19            
20             =pod
21            
22             =encoding UTF-8
23            
24             =head1 NAME
25            
26             Dist::Zilla::Plugin::PortabilityTests - (DEPRECATED) Release tests for portability
27            
28             =head1 VERSION
29            
30             version 2.000007
31            
32             =for test_synopsis BEGIN { die "SKIP: synopsis isn't perl code" }
33            
34             =head1 SYNOPSIS
35            
36             Please use L<Dist::Zilla::Plugin::Test::Portability> instead.
37            
38             In C<dist.ini>:
39            
40             [Test::Portability]
41            
42             =head1 AVAILABILITY
43            
44             The project homepage is L<http://metacpan.org/release/Dist-Zilla-Plugin-Test-Portability/>.
45            
46             The latest version of this module is available from the Comprehensive Perl
47             Archive Network (CPAN). Visit L<http://www.perl.com/CPAN/> to find a CPAN
48             site near you, or see L<https://metacpan.org/module/Dist::Zilla::Plugin::Test::Portability/>.
49            
50             =head1 SOURCE
51            
52             The development version is on github at L<http://github.com/doherty/Dist-Zilla-Plugin-Test-Portability>
53             and may be cloned from L<git://github.com/doherty/Dist-Zilla-Plugin-Test-Portability.git>
54            
55             =head1 BUGS AND LIMITATIONS
56            
57             You can make new bug reports, and view existing ones, through the
58             web interface at L<https://github.com/doherty/Dist-Zilla-Plugin-Test-Portability/issues>.
59            
60             =head1 AUTHORS
61            
62             =over 4
63            
64             =item *
65            
66             Marcel Gruenauer <marcel@cpan.org>
67            
68             =item *
69            
70             Randy Stauner <rwstauner@cpan.org>
71            
72             =item *
73            
74             Mike Doherty <doherty@cpan.org>
75            
76             =back
77            
78             =head1 COPYRIGHT AND LICENSE
79            
80             This software is copyright (c) 2010 by Mike Doherty.
81            
82             This is free software; you can redistribute it and/or modify it under
83             the same terms as the Perl 5 programming language system itself.
84            
85             =cut
86