From: Steve Peters Date: Fri, 30 Dec 2005 17:47:45 +0000 (+0000) Subject: Convert t/op/sleep.t to using test.pl X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f9e4a5e8b675d9f0b82120fd33801982344ad4ca;p=p5sagit%2Fp5-mst-13.2.git Convert t/op/sleep.t to using test.pl p4raw-id: //depot/perl@26543 --- diff --git a/t/op/sleep.t b/t/op/sleep.t index c2684ad..3f5bbe0 100755 --- a/t/op/sleep.t +++ b/t/op/sleep.t @@ -1,8 +1,15 @@ #!./perl +BEGIN { + chdir 't' if -d 't'; + @INC = qw(. ../lib); +} + +require "test.pl"; +plan( tests => 4 ); + use strict; use warnings; -use Test::More tests=>4; my $start = time; my $sleep_says = sleep 3;