perl-ExtUtils-Config/ExtUtils-Config-0.008-old-Test::More.patch
Paul Howarth f34ea90b31 Update to 0.008
- New upstream release 0.008
  - Remove set, clear, clone methods
- Don't bother with the release tests, which can't be run on EPEL < 7 anyway
- Update patch for building with old Test::More versions
2014-06-26 23:18:52 +01:00

17 lines
323 B
Diff

--- t/basics.t
+++ t/basics.t
@@ -2,7 +2,7 @@
use strict;
use warnings FATAL => 'all';
-use Test::More 0.88;
+use Test::More tests=> 8;
use Config;
@@ -29,4 +29,3 @@ my $set = $config->values_set;
$set->{more} = 'more3';
is($config->get('more'), $Config{more}, "more is still '$Config{more}'");
-done_testing;