# Configuration for Perl tests. -*- perl -*-
#
# Copyright 2015, 2018, 2021-2022, 2024 Russ Allbery <eagle@eyrie.org>
#
# SPDX-License-Identifier: MIT
# The level of coverage achieved by the test suite.
$COVERAGE_LEVEL = 80;
# Not yet converted to my current coding style.
@CRITIC_IGNORE = qw(blib/lib/App/DocKnot/Spin/Text.pm);
# Default minimum version requirement.
$MINIMUM_VERSION = '5.024';
# Disable POD coverage testing for now until App::DocKnot::Spin::Text has been
# converted.
@POD_COVERAGE_EXCLUDE = (qr{ .* }xms);
# Ignore test data when checking for license markers.
@SPDX_IGNORE = (
qr{ \A [.] /t/data/generate/ }xms,
qr{ \A [.] /t/data/spin/ }xms,
qr{ \A [.] /t/data/update/ }xms,
);
# File must end with this line.
1;