The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# 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.
@POD_COVERAGE_EXCLUDE = (qr{ \A \w+ COLOR \z }xms);

# File must end with this line.
1;