1Test::CPAN::Changes(3)User Contributed Perl DocumentationTest::CPAN::Changes(3)
2
3
4
6 Test::CPAN::Changes - Validation of the Changes file in a CPAN
7 distribution
8
10 use Test::More;
11 eval 'use Test::CPAN::Changes';
12 plan skip_all => 'Test::CPAN::Changes required for this test' if $@;
13 changes_ok();
14
16 This module allows CPAN authors to write automated tests to ensure
17 their changelogs match the specification.
18
20 changes_ok( )
21 Simple wrapper around "changes_file_ok". Declares a four test plan, and
22 uses the default filename of "Changes".
23
24 changes_file_ok( [ $file ] )
25 Checks the contents of the changes file against the specification. No
26 plan is declared and if no filename is specified, "Changes" is used.
27
29 · CPAN::Changes::Spec
30
31 · CPAN::Changes
32
34 Brian Cassidy <bricas@cpan.org>
35
37 Copyright 2011 by Brian Cassidy
38
39 This library is free software; you can redistribute it and/or modify it
40 under the same terms as Perl itself.
41
42
43
44perl v5.12.3 2011-04-12 Test::CPAN::Changes(3)