File: 09.exit_status.t

package info (click to toggle)
perlbrew 1.02-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 752 kB
  • sloc: perl: 9,387; makefile: 7; sh: 1
file content (30 lines) | stat: -rw-r--r-- 650 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env perl
use Test2::V0;

use FindBin;
use lib $FindBin::Bin;
use App::perlbrew;
require 'test2_helpers.pl';

use Path::Class;

my $bin_perlbrew = $ENV{AUTOPKGTEST_TMP} ? '/usr/bin/perlbrew' : file(__FILE__)->dirname->dirname->child("script")->child("perlbrew");

like(
    dies {
        my $app = App::perlbrew->new("unknown-command");
        $app->run;
    },
    qr[unknown-command],
    'unknown-command error'
);

my $perl = $^X;
system("$perl -Ilib ${bin_perlbrew} unknown-command 2>&1");
isnt $?, 0, 'unknown-command command error';

system("$perl -Ilib ${bin_perlbrew} version 2>&1");
is $?, 0, 'version command';

done_testing;