File: do_system.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 (21 lines) | stat: -rw-r--r-- 507 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
#!/usr/bin/env perl
use Test2::V0;

plan 2;

# test that 'do_system' wraps 'system' correctly

our @system;
BEGIN {
  *CORE::GLOBAL::system = sub { @system = @_; };
}
use App::perlbrew;

# don't actually run() it, we just want to call do_system
my $app = App::perlbrew->new('list');

$app->do_system(qw(perl -E), 'say 42');
is \@system, [qw(perl -E), 'say 42'], 'passed all arguments to system()';

$app->do_system("perl -e 'say 42'");
is \@system, ["perl -e 'say 42'"], 'passed single string to system()';