File Coverage

blib/lib/Dist/Zilla/Plugin/CheckChangesTests.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 27 27 100.0


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