aboutsummaryrefslogtreecommitdiff
path: root/t/03timeout.t
blob: d7a40436de51e7eef023066f96dba497d27853d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- perl -*-
use lib 't';

use strict;
use warnings;
use Test::More tests => 2;
use POSIX::Run::Capture;

my $obj = new POSIX::Run::Capture;

is($obj->timeout, 0);

$obj->set_timeout(60);
is($obj->timeout, 60);

Return to:

Send suggestions and report system problems to the System administrator.