From 9e5ffdac00cc77f398867a4efeb4bffda897cc12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Jourdois?= Date: Sun, 11 Jul 2010 14:12:23 +0200 Subject: [PATCH] Remove done_testing call. done_testing appeared in Test::More 0.87, which is not in perl 5.10, and therefore not in debian stable. This makes t/perl-syntax.t pass on debian stable and causes no more trouble. --- t/perl-syntax.t | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/t/perl-syntax.t b/t/perl-syntax.t index af26164..cef0284 100755 --- a/t/perl-syntax.t +++ b/t/perl-syntax.t @@ -11,7 +11,7 @@ use strict; use File::Find; -use Test::More; +use Test::More qw/ no_plan /; eval "use Moose"; plan skip_all => "Moose required for testing Perl syntax" @@ -24,8 +24,6 @@ plan skip_all => "Moose required for testing Perl syntax" # find( { wanted => \&checkFile, no_chdir => 1 }, '.' ); -done_testing(); - # # Check a file. #