summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorRuss Allbery <rra@cpan.org>2021-12-25 11:12:12 -0800
committerRuss Allbery <rra@cpan.org>2021-12-25 11:12:12 -0800
commit84b08d2f67f6a49b6bbfaa720d347e0dd4ba5185 (patch)
treed0e1871061cf57e0dbba0aeb480482659ae76ba5 /t
parent9257e00ec67fb1c0ad07d8d91fb2bfbdd1c14949 (diff)
Update to rra-c-util 10.1
Diffstat (limited to 't')
-rw-r--r--t/data/perltidyrc1
-rwxr-xr-xt/docs/changes.t2
-rwxr-xr-xt/docs/pod-coverage.t4
-rwxr-xr-xt/docs/pod-spelling.t2
-rwxr-xr-xt/docs/pod.t2
-rwxr-xr-xt/docs/synopsis.t4
-rw-r--r--t/lib/Test/RRA.pm4
-rw-r--r--t/lib/Test/RRA/Config.pm8
-rw-r--r--t/lib/Test/RRA/ModuleVersion.pm2
-rwxr-xr-xt/style/coverage.t2
-rwxr-xr-xt/style/critic.t2
-rwxr-xr-xt/style/minimum-version.t4
-rwxr-xr-xt/style/module-version.t4
-rwxr-xr-xt/style/strict.t4
14 files changed, 22 insertions, 23 deletions
diff --git a/t/data/perltidyrc b/t/data/perltidyrc
index 62623c9..431c311 100644
--- a/t/data/perltidyrc
+++ b/t/data/perltidyrc
@@ -19,7 +19,6 @@
-bbao # put line breaks before any operator
-nbbc # don't force blank lines before comments (bad for else blocks)
--nbl # keep opening braces on the same line
-boc # do not re-break lists, since perltidy is awful at this
-ce # cuddle braces around else
-l=79 # usually use 78, but don't want 79-long lines reformatted
diff --git a/t/docs/changes.t b/t/docs/changes.t
index 16bf212..94b8000 100755
--- a/t/docs/changes.t
+++ b/t/docs/changes.t
@@ -27,7 +27,7 @@
#
# SPDX-License-Identifier: MIT
-use 5.008;
+use 5.010;
use strict;
use warnings;
diff --git a/t/docs/pod-coverage.t b/t/docs/pod-coverage.t
index 198f4e7..c499af3 100755
--- a/t/docs/pod-coverage.t
+++ b/t/docs/pod-coverage.t
@@ -6,7 +6,7 @@
# which can be found at <https://www.eyrie.org/~eagle/software/rra-c-util/>.
#
# Written by Russ Allbery <eagle@eyrie.org>
-# Copyright 2019 Russ Allbery <eagle@eyrie.org>
+# Copyright 2019, 2021 Russ Allbery <eagle@eyrie.org>
# Copyright 2013-2014
# The Board of Trustees of the Leland Stanford Junior University
#
@@ -30,7 +30,7 @@
#
# SPDX-License-Identifier: MIT
-use 5.008;
+use 5.010;
use strict;
use warnings;
diff --git a/t/docs/pod-spelling.t b/t/docs/pod-spelling.t
index 491f932..497dce3 100755
--- a/t/docs/pod-spelling.t
+++ b/t/docs/pod-spelling.t
@@ -30,7 +30,7 @@
#
# SPDX-License-Identifier: MIT
-use 5.008;
+use 5.010;
use strict;
use warnings;
diff --git a/t/docs/pod.t b/t/docs/pod.t
index 1c88ed1..85974d8 100755
--- a/t/docs/pod.t
+++ b/t/docs/pod.t
@@ -30,7 +30,7 @@
#
# SPDX-License-Identifier: MIT
-use 5.008;
+use 5.010;
use strict;
use warnings;
diff --git a/t/docs/synopsis.t b/t/docs/synopsis.t
index 1a2fbf1..b19b4dd 100755
--- a/t/docs/synopsis.t
+++ b/t/docs/synopsis.t
@@ -6,7 +6,7 @@
# which can be found at <https://www.eyrie.org/~eagle/software/rra-c-util/>.
#
# Written by Russ Allbery <eagle@eyrie.org>
-# Copyright 2019 Russ Allbery <eagle@eyrie.org>
+# Copyright 2019, 2021 Russ Allbery <eagle@eyrie.org>
# Copyright 2013-2014
# The Board of Trustees of the Leland Stanford Junior University
#
@@ -30,7 +30,7 @@
#
# SPDX-License-Identifier: MIT
-use 5.008;
+use 5.010;
use strict;
use warnings;
diff --git a/t/lib/Test/RRA.pm b/t/lib/Test/RRA.pm
index 56417c4..c432d0c 100644
--- a/t/lib/Test/RRA.pm
+++ b/t/lib/Test/RRA.pm
@@ -10,7 +10,7 @@
package Test::RRA;
-use 5.008;
+use 5.010;
use base qw(Exporter);
use strict;
use warnings;
@@ -52,7 +52,7 @@ BEGIN {
# This version should match the corresponding rra-c-util release, but with
# two digits for the minor version, including a leading zero if necessary,
# so that it will sort properly.
- $VERSION = '9.01';
+ $VERSION = '10.01';
}
# Compare a string to the contents of a file, similar to the standard is()
diff --git a/t/lib/Test/RRA/Config.pm b/t/lib/Test/RRA/Config.pm
index 0bc1b25..75419ea 100644
--- a/t/lib/Test/RRA/Config.pm
+++ b/t/lib/Test/RRA/Config.pm
@@ -9,7 +9,7 @@
package Test::RRA::Config;
-use 5.008;
+use 5.010;
use base qw(Exporter);
use strict;
use warnings;
@@ -32,7 +32,7 @@ BEGIN {
# This version should match the corresponding rra-c-util release, but with
# two digits for the minor version, including a leading zero if necessary,
# so that it will sort properly.
- $VERSION = '9.01';
+ $VERSION = '10.01';
}
# If C_TAP_BUILD or C_TAP_SOURCE are set in the environment, look for
@@ -58,7 +58,7 @@ our $COVERAGE_LEVEL = 100;
our @COVERAGE_SKIP_TESTS;
our @CRITIC_IGNORE;
our $LIBRARY_PATH;
-our $MINIMUM_VERSION = '5.008';
+our $MINIMUM_VERSION = '5.010';
our %MINIMUM_VERSION;
our @MODULE_VERSION_IGNORE;
our @POD_COVERAGE_EXCLUDE;
@@ -135,7 +135,7 @@ that Perl scripts can pass a syntax check.
=item $MINIMUM_VERSION
Default minimum version requirement for included Perl scripts. If not given,
-defaults to 5.008.
+defaults to 5.010.
=item %MINIMUM_VERSION
diff --git a/t/lib/Test/RRA/ModuleVersion.pm b/t/lib/Test/RRA/ModuleVersion.pm
index 18f3ae1..d01c14b 100644
--- a/t/lib/Test/RRA/ModuleVersion.pm
+++ b/t/lib/Test/RRA/ModuleVersion.pm
@@ -29,7 +29,7 @@ BEGIN {
# This version should match the corresponding rra-c-util release, but with
# two digits for the minor version, including a leading zero if necessary,
# so that it will sort properly.
- $VERSION = '9.01';
+ $VERSION = '10.01';
}
# A regular expression matching the version string for a module using the
diff --git a/t/style/coverage.t b/t/style/coverage.t
index ae709fb..57222d5 100755
--- a/t/style/coverage.t
+++ b/t/style/coverage.t
@@ -30,7 +30,7 @@
#
# SPDX-License-Identifier: MIT
-use 5.008;
+use 5.010;
use strict;
use warnings;
diff --git a/t/style/critic.t b/t/style/critic.t
index 9794b39..d515221 100755
--- a/t/style/critic.t
+++ b/t/style/critic.t
@@ -31,7 +31,7 @@
#
# SPDX-License-Identifier: MIT
-use 5.008;
+use 5.010;
use strict;
use warnings;
diff --git a/t/style/minimum-version.t b/t/style/minimum-version.t
index 861367d..6a5aa89 100755
--- a/t/style/minimum-version.t
+++ b/t/style/minimum-version.t
@@ -6,7 +6,7 @@
# which can be found at <https://www.eyrie.org/~eagle/software/rra-c-util/>.
#
# Written by Russ Allbery <eagle@eyrie.org>
-# Copyright 2019 Russ Allbery <eagle@eyrie.org>
+# Copyright 2019, 2021 Russ Allbery <eagle@eyrie.org>
# Copyright 2013-2014
# The Board of Trustees of the Leland Stanford Junior University
#
@@ -30,7 +30,7 @@
#
# SPDX-License-Identifier: MIT
-use 5.008;
+use 5.010;
use strict;
use warnings;
diff --git a/t/style/module-version.t b/t/style/module-version.t
index 8339da5..2601f81 100755
--- a/t/style/module-version.t
+++ b/t/style/module-version.t
@@ -11,7 +11,7 @@
#
# SPDX-License-Identifier: MIT
-use 5.008;
+use 5.010;
use strict;
use warnings;
@@ -121,7 +121,7 @@ Russ Allbery <eagle@eyrie.org>
=head1 COPYRIGHT AND LICENSE
-Copyright 2014-2016, 2019-2020 Russ Allbery <eagle@eyrie.org>
+Copyright 2014-2016, 2019-2021 Russ Allbery <eagle@eyrie.org>
Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior
University
diff --git a/t/style/strict.t b/t/style/strict.t
index 8b92fb5..a2f5b99 100755
--- a/t/style/strict.t
+++ b/t/style/strict.t
@@ -6,7 +6,7 @@
# which can be found at <https://www.eyrie.org/~eagle/software/rra-c-util/>.
#
# Written by Russ Allbery <eagle@eyrie.org>
-# Copyright 2016, 2018-2020 Russ Allbery <eagle@eyrie.org>
+# Copyright 2016, 2018-2021 Russ Allbery <eagle@eyrie.org>
# Copyright 2013-2014
# The Board of Trustees of the Leland Stanford Junior University
#
@@ -30,7 +30,7 @@
#
# SPDX-License-Identifier: MIT
-use 5.008;
+use 5.010;
use strict;
use warnings;