blob: 441f76a6aa02da1e88927a7e9bd334254f881b2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = qw(. ../lib);
}
require "./test.pl";
plan( tests => 4 );
use strict;
use warnings;
my $start = time;
my $sleep_says = sleep 3;
my $diff = time - $start;
cmp_ok( $sleep_says, '>=', 2, 'Sleep says it slept at least 2 seconds' );
cmp_ok( $sleep_says, '<=', 10, '... and no more than 10' );
cmp_ok( $diff, '>=', 2, 'Actual time diff is at least 2 seconds' );
cmp_ok( $diff, '<=', 10, '... and no more than 10' );
|