From eac20992468014f276cf348a038f462482b1cda5 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Thu, 17 Sep 2009 15:43:46 -0700 Subject: [PATCH] Mark Testing modules as optional, fixes bug #11008. --- docs/changelog/7.x.x.txt | 1 + sbin/testEnvironment.pl | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 24db4ff53..7954508bb 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -49,6 +49,7 @@ - fixed #10950: Thingy - fixed #10976: Form::Date not internationalized /DateTime::setToEpoch - fixed #11005: calendar feed workflow + - fixed #11008: Test::Class 7.7.19 - fixed #10838: Forwarded forum post email to new CS adds reply to original thread diff --git a/sbin/testEnvironment.pl b/sbin/testEnvironment.pl index 56036c139..90d0aa07a 100755 --- a/sbin/testEnvironment.pl +++ b/sbin/testEnvironment.pl @@ -63,13 +63,13 @@ my $missingModule = 0; checkModule("LWP", 5.824 ); checkModule("HTTP::Request", 1.40 ); checkModule("HTTP::Headers", 1.61 ); -checkModule("Test::More", 0.61, 1 ); -checkModule("Test::MockObject", 1.02, 1 ); -checkModule("Test::Deep", 0.095, 1 ); -checkModule("Test::Exception", 0.27, 1 ); -checkModule("Test::Class", 0.31, 1 ); +checkModule("Test::More", 0.61, 2 ); +checkModule("Test::MockObject", 1.02, 2 ); +checkModule("Test::Deep", 0.095, 2 ); +checkModule("Test::Exception", 0.27, 2 ); +checkModule("Test::Class", 0.31, 2 ); checkModule("Pod::Coverage", 0.19, 2 ); -checkModule("Text::Balanced", 2.00, 1 ); +checkModule("Text::Balanced", 2.00, 2 ); checkModule("Digest::MD5", 2.38 ); checkModule("DBI", 1.607 ); checkModule("DBD::mysql", 4.010 );