File: IPC-Run3-ProfPP.t

package info (click to toggle)
libipc-run3-perl 0.049-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 200 kB
  • sloc: perl: 1,179; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 346 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!perl
use strict;
use warnings;

use Test;
use IPC::Run3::ProfPP;

my $p = IPC::Run3::ProfPP->new;

my @tests = (
sub {
    local $SIG{__WARN__} = sub { };

    $p->app_call( [ "parent_prog" ], 1.0 );
    $p->run_exit( [ "child_prog" ], 1.1, 1.2, 1.3, 1.4 );
    $p->app_exit( 1.5 );
    ok 1;
},
);

plan tests => 0+@tests;

$_->() for @tests;