Handle old versions of Test::More

Really old versions of Test::More don't support subplans, so skip the
tests in that case.
This commit is contained in:
Peter Eisentraut 2014-09-10 20:39:28 -04:00
parent 8632ba6de4
commit 75717ce8f0
1 changed files with 8 additions and 1 deletions

View File

@ -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