perl: bump the required Perl version to 5.8 from 5.6.[21]
[gitweb.git] / t / t9700 / test.pl
index f2820d2f267c1604f211563999ac429f1eeac572..c15ca2d6479a814d7649a38a671a554b6ed8b68f 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl
 use lib (split(/:/, $ENV{GITPERLLIB}));
 
-use 5.006002;
+use 5.008;
 use warnings;
 use strict;
 
@@ -10,8 +10,8 @@
 BEGIN {
        # t9700-perl-git.sh kicks off our testing, so we have to go from
        # there.
-       Test::More->builder->{Curr_Test} = 1;
-       Test::More->builder->{No_Ending} = 1;
+       Test::More->builder->current_test(1);
+       Test::More->builder->no_ending(1);
 }
 
 use Cwd;
@@ -113,7 +113,7 @@ BEGIN
 my $dir_commit = $r2->command_oneline('log', '-n1', '--pretty=format:%H', '.');
 isnt($last_commit, $dir_commit, 'log . does not show last commit');
 
-printf "1..%d\n", Test::More->builder->{Curr_Test};
+printf "1..%d\n", Test::More->builder->current_test;
 
 my $is_passing = eval { Test::More->is_passing };
 exit($is_passing ? 0 : 1) unless $@ =~ /Can't locate object method/;