File: json_pp.t

package info (click to toggle)
carton 1.0.35-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 448 kB
  • sloc: perl: 1,207; makefile: 7
file content (24 lines) | stat: -rw-r--r-- 383 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use strict;
use Test::More;
use lib ".";
use xt::CLI;

plan skip_all => "perl <= 5.14" if $] >= 5.015;

{
    my $app = cli();

    $app->write_cpanfile(<<EOF);
requires 'JSON::PP';
requires 'CPAN::Meta', '2.12';
EOF

    $app->run("install");
    $app->clean_local;

    $app->run("install", "--deployment");
    unlike $app->stderr, qr/JSON::PP is not in range/;
}

done_testing;