Blame t/data/perl.conf

Packit Service d987f3
# Configuration for Perl tests.  -*- perl -*-
Packit Service d987f3
Packit Service d987f3
# The level of coverage achieved by the test suite.
Packit Service d987f3
$COVERAGE_LEVEL = 100;
Packit Service d987f3
Packit Service d987f3
# Skip taint tests when doing coverage analysis since Devel::Cover can't
Packit Service d987f3
# handle taint checking.
Packit Service d987f3
@COVERAGE_SKIP_TESTS = qw(taint);
Packit Service d987f3
Packit Service d987f3
# Default minimum version requirement.
Packit Service d987f3
$MINIMUM_VERSION = '5.006';
Packit Service d987f3
Packit Service d987f3
# Some of the constant subs are documented but not in a way that
Packit Service d987f3
# Test::Pod::Coverage can understand.  croak is an internal helper function
Packit Service d987f3
# because Carp consumes a lot of memory.
Packit Service d987f3
@POD_COVERAGE_EXCLUDE = (qr{ \A \w+ COLOR \z }xms, qr{ \A croak \z }xms);
Packit Service d987f3
Packit Service d987f3
# File must end with this line.
Packit Service d987f3
1;