1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
#!/usr/bin/env perl
use strict;
use warnings;
use FindBin;
use lib $FindBin::Bin;
use App::perlbrew;
require 'test_helpers.pl';
use Test::More;
use Test::Exception;
use Path::Class;
use App::perlbrew;
{
no warnings 'redefine';
sub App::perlbrew::http_download { return "ERROR" }
}
throws_ok(
sub {
my $app = App::perlbrew->new("install", "perl-blead");
$app->run;
},
qr[ERROR: Failed to download perl-blead tarball.]
);
throws_ok(
sub {
my $app = App::perlbrew->new("install", "blead");
$app->run;
},
qr[ERROR: Failed to download perl-blead tarball.]
);
done_testing;
|