Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Morpheus CPAN distribution.

Report information
The Basics
Id: 64203
Status: resolved
Priority: 0/
Queue: Morpheus

People
Owner: Nobody in particular
Requestors: ANDK [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.36
Fixed in: (no value)



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,
Thanks for reminding about this! Fixed in 0.37 release by using $Config{perlpath} (as recommended by CPAN authors FAQ on cpantesters wiki).