-
Notifications
You must be signed in to change notification settings - Fork 220
/
Copy pathcommand-alias.t
44 lines (37 loc) · 1.06 KB
/
command-alias.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
40
41
42
43
44
#!/usr/bin/env perl
use Test2::V0;
use Test2::Tools::Spec;
use Config;
BEGIN { $ENV{SHELL} = "/bin/bash" }
use FindBin;
use lib $FindBin::Bin;
use App::perlbrew;
require "test2_helpers.pl";
use PerlbrewTestHelpers qw(stderr_like);
mock_perlbrew_install("perl-5.14.1");
mock_perlbrew_lib_create('perl-5.14.1@nobita');
describe "alias command," => sub {
before_each 'cleanup env' => sub {
delete $ENV{PERL_MB_OPT};
delete $ENV{PERL_MM_OPT};
delete $ENV{PERL_LOCAL_LIB_ROOT};
delete $ENV{PERLBREW_LIB};
delete $ENV{PERL5LIB};
};
describe "when invoked with unknown action name,", sub {
it "should display usage message" => sub {
my $x = "correcthorsebatterystaple";
my $app = App::perlbrew->new("alias", $x);
stderr_like {
eval {
$app->run;
1;
}
or do {
print STDERR $@;
};
} qr/ERROR: Unrecognized action: `$x`/;
}
};
};
done_testing;