Handle old versions of Test::More

Really old versions of Test::More don't support subplans, so skip the
tests in that case.
pull/14/head
Peter Eisentraut 11 years ago
parent 8632ba6de4
commit 75717ce8f0
  1. 9
      src/test/perl/TestLib.pm

@ -36,7 +36,14 @@ BEGIN
} or do
{
plan skip_all => "IPC::Run not available";
}
};
eval {
Test::More->VERSION('0.93_01');
} or do
{
plan skip_all => "version of Test::More is too old to support subplans";
};
}
# Set to untranslated messages, to be able to compare program output

Loading…
Cancel
Save