summaryrefslogtreecommitdiff
path: root/xt/cli/no_cpanfile.t
blob: e12d2c31fd933b1edc0b39f40ec1c927878c898e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use strict;
use Test::More;
use xt::CLI;

{
    my $app = cli();
    $app->run("install");
    like $app->stderr, qr/Can't locate cpanfile/;
    is $app->exit_code, 255;
}

done_testing;