Skip to content
This repository has been archived by the owner on Jan 23, 2022. It is now read-only.

Commit

Permalink
Changes format author test
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Jun 3, 2015
1 parent 6bede9f commit 25c6f08
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions xt/00-check-changelog.t
@@ -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 25c6f08

Please sign in to comment.