summaryrefslogtreecommitdiff
path: root/t/mro/recursion_dfs.t
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-04-20 13:42:21 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-04-20 13:42:21 +0000
commit5f5ae4a7c00fa8527fbc1cf66da85ee1690fc1a7 (patch)
treeeaff53030c90962479d5ab06733f3af7738fe9f9 /t/mro/recursion_dfs.t
parent63575281672bbbaaf04505eb965051807623f028 (diff)
downloadperl-5f5ae4a7c00fa8527fbc1cf66da85ee1690fc1a7.tar.gz
Don't use Test::More in core tests (at least, where
that's possible, that is where is_deeply() isn't used) p4raw-id: //depot/perl@30993
Diffstat (limited to 't/mro/recursion_dfs.t')
-rw-r--r--t/mro/recursion_dfs.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/mro/recursion_dfs.t b/t/mro/recursion_dfs.t
index a3d610e7f1..313a4ed562 100644
--- a/t/mro/recursion_dfs.t
+++ b/t/mro/recursion_dfs.t
@@ -9,11 +9,11 @@ BEGIN {
}
}
-use Test::More;
+require './test.pl';
use mro;
-plan skip_all => "Your system has no SIGALRM" if !exists $SIG{ALRM};
-plan tests => 8;
+plan(skip_all => "Your system has no SIGALRM") if !exists $SIG{ALRM};
+plan(tests => 8);
=pod