-
Notifications
You must be signed in to change notification settings - Fork 220
/
Copy pathfailure-command-install-patchperl.t
39 lines (33 loc) · 1.11 KB
/
failure-command-install-patchperl.t
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
37
38
39
#!/usr/bin/env perl
use Test2::V0;
use Test2::Tools::Spec;
use Path::Class;
use File::Temp qw( tempdir );
use App::perlbrew;
$App::perlbrew::PERLBREW_ROOT = my $perlbrew_root = tempdir( CLEANUP => 1 );
$App::perlbrew::PERLBREW_HOME = my $perlbrew_home = tempdir( CLEANUP => 1 );
{
no warnings 'redefine';
sub App::perlbrew::http_get {
my ($url) = @_;
like $url, qr/patchperl$/, "GET patchperl url: $url";
return "Some invalid piece of text";
}
}
describe "App::perlbrew->install_patchperl" => sub {
it "should not produce 'patchperl' in the bin dir, if the downloaded content does not seem to be valid." => sub {
my $patchperl = file($perlbrew_root, "bin", "patchperl")->absolute;
my $error;
my $produced_error = 0;
eval {
my $app = App::perlbrew->new("install-patchperl", "-q");
$app->run();
} or do {
$error = $@;
$produced_error = 1;
};
ok $produced_error, "generated an error: $error";
ok !(-f $patchperl), "patchperl is *not* installed: $patchperl";
};
};
done_testing;