- 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
17 lines
323 B
Diff
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;
|