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