Skip Menu |

This queue is for tickets about the Data-Faker CPAN distribution.

Report information
The Basics
Id: 39937
Status: resolved
Priority: 0/
Queue: Data-Faker

People
Owner: WSHELDAHL [...] cpan.org
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.07
Fixed in: 0.09



Subject: Test should not call "perl"
The test file t/datafaker.t uses a hardcoded "perl" path. This is problematic, as it is not guaranteed that the perl in PATH is the same perl which is used to build the module (or maybe there's even no perl in PATH at all). This explains the many test failures which are visible on cpan testers. It's better to use $^X instead of "perl". Regards, Slaven
This is fixed in version 0.09 by calling $^X in the test, as you suggested. Thanks!