File: pmfunc.t

package info (click to toggle)
pmtools 2.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 388 kB
  • sloc: perl: 803; makefile: 10
file content (21 lines) | stat: -rw-r--r-- 487 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
# pmfunc testing

# ------ pragmas
use strict;
use warnings;
use Test::More tests => 3;

# ------ define variable
my $output = undef;	# output from pmfunc

# ------ add pmtools to PATH for testing, so we use the current pmtools
$ENV{"PATH"} = 'blib/script:' . $ENV{"PATH"};

eval {
    $output = `bin/pmfunc Cwd::chdir 2>&1`;
};

isnt($?, 127, "pmfunc runs");

like($output, qr/^sub\schdir\s/msx,     "found 'chdir()'");
like($output, qr/my\s\$newdir\s=\s/msx, "display function body");