From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!./perl
BEGIN {
chdir 't' if -d 't';
require "./test.pl";
set_up_inc( qw(. ../lib) );
}
plan( tests => 4 );
use strict;
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' );