Subject: | Drop dependency on Directory::Scratch |
Another suggestion aimed at reducing PerlX-QuoteOperator's list of
dependencies.
Just drop the dependency from Build.PL/META.yml/etc and in the test case
that uses it, do something like:
use if (!eval { require Directory::Scratch; 1 }),
'Test::More', skip_all => "requires Directory::Scratch";
use Directory::Scratch;
use Test::More tests => 3;