Skip to content

Commit

Permalink
fix a test that fails with CPAN::Perl::Releases 2.88
Browse files Browse the repository at this point in the history
  • Loading branch information
gugod committed Aug 11, 2016
1 parent 7b10274 commit bd73ba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/13.perl_release.t
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe "App::perlbrew#perl_release method" => sub {
it "returns the perl dist tarball file name, and its download url" => sub {
my $app = App::perlbrew->new;

for my $version (qw(5.14.2 5.10.1 5.10.0 5.003_07 5.004_05)) {
for my $version (qw(5.14.2 5.10.1 5.10.0 5.004_05)) {
my ($ball, $url) = $app->perl_release($version);
like $ball, qr/perl-?${version}.tar.(bz2|gz)/;
like $url, qr/${ball}$/;
Expand Down

1 comment on commit bd73ba8

@moollaza
Copy link

@moollaza moollaza commented on bd73ba8 Oct 3, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gugod do you plan to release this soon? The current version of Perlbrew on CPAN doesn't install because this test fails

Please sign in to comment.