Skip to content

Commit

Permalink
add author test to check Changes log
Browse files Browse the repository at this point in the history
This is to address <#67>.

This allows for the Changes file to be parsed on MetaCPAN by
<https://metacpan.org/pod/CPAN::Changes>.
  • Loading branch information
zmughal committed May 3, 2015
1 parent ac2ce06 commit 870c9f3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ pure_all
so_locations
subdirs
~$
^xt/

.travis.yml
README.md
17 changes: 17 additions & 0 deletions xt/00-check-changelog.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
use Test::More tests => 1;

use strict;
use warnings;

use CPAN::Changes;
use Data::Dumper;

my $changes = CPAN::Changes->load('Changes');

ok($changes);

my @releases = map { +{ $_->version => $_->date } } $changes->releases;

note Dumper \@releases;

done_testing;

0 comments on commit 870c9f3

Please sign in to comment.