File: 90-rt103861.t

package info (click to toggle)
libpar-packer-perl 1.063-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,380 kB
  • sloc: perl: 12,859; ansic: 1,486; makefile: 30; sh: 5
file content (15 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl

use strict;
use warnings;

use Test::More;
require "./t/utils.pl";

plan tests => 3;

my $exe = pp_ok(-e => q[use lib 'foo'; use lib 'bar'; print qq[$_\n] foreach @INC]);

my ($out) = run_ok($exe);
like( $out, qr/^bar\nfoo\n/, q["foo" and "bar" added to @INC] );