Convert t/op/sleep.t to using test.pl
Steve Peters [Fri, 30 Dec 2005 17:47:45 +0000 (17:47 +0000)]
p4raw-id: //depot/perl@26543

t/op/sleep.t

index c2684ad..3f5bbe0 100755 (executable)
@@ -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;