summaryrefslogtreecommitdiff
path: root/t/data/perl.conf
blob: ae60011cbac767fc91dd9e7a2c6af790374a2cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Configuration for Perl tests.  -*- perl -*-
#
# Copyright 2015, 2018, 2021 Russ Allbery <eagle@eyrie.org>
#
# SPDX-License-Identifier: MIT

# The level of coverage achieved by the test suite.
$COVERAGE_LEVEL = 85;

# Default minimum version requirement.
$MINIMUM_VERSION = '5.024';

# Additional regexes that match methods that should be considered private and
# therefore don't have to be documented in POD coverage.
@POD_COVERAGE_EXCLUDE = (qr{ \A spin_fh \z }xms);

# File must end with this line.
1;