# New Ticket Created by  David Farrell 
# Please include the string:  [perl #127483]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=127483 >


I'm having problems installing my module with panda (
https://stackoverflow.com/questions/35246259/why-does-panda-fail-to-install-my-module-when-all-tests-pass-locally
)

But the issue appears to be perl6's different treatment of "use lib 'lib';"
versus the command line: perl6 -Ilib ...

In the case of Pod-Perl5 the test suite passes when -Ilib is not included
as an argument to perl6.

Steps to reproduce for a single test:

$ git clone https://github.com/dnmfarrell/Pod-Perl5
Cloning into 'Pod-Perl5'...
remote: Counting objects: 731, done.
remote: Total 731 (delta 0), reused 0 (delta 0), pack-reused 731
Receiving objects: 100% (731/731), 129.62 KiB | 0 bytes/s, done.
Resolving deltas: 100% (350/350), done.
Checking connectivity... done.
$ cd Pod-Perl5/
$ perl6 t/Perl5.t
1..5
ok 1 - Import Pod::Perl5
ok 2 - parse string
ok 3 - parse document
ok 4 - parse document
ok 5 - parse document
$ perl6 -Ilib t/Perl5.t
1..5
ok 1 - Import Pod::Perl5
ok 2 - parse string
ok 3 - parse document
ok 4 - parse document
not ok 5 - parse document

# Failed test 'parse document'
# at t/Perl5.t line 11
# Looks like you failed 1 test of 5

Reply via email to