Subject: | test uses perl from path instead of $^X |
If I interprete the following line from the test t/bootstrap.t correctly
is(xqx(q#perl -e 'use Morpheus -defaults => { test_bootstrap => 1 };
print morph("test_bootstrap")'#), 1, "Deafults plugin loads");
then the test is using the first perl found in $PATH for testing instead
of the perl that is running the tests.
Consequently many tests fail due to missing dependencies.
The proper way to run tests with the right perl is to use $^X or in
complicated cases Probe::Perl.
HTH, Regards,