Subject: | Bug in t/50-xbel.t |
The problem isn't related to a specific version of perl.
The test file t/50-xbel.t contains
use Data::Denter;
print Indent($xbel);
This results in "make test" failing with
t/50-xbel..............Can't locate Data/Denter.pm in @INC
As Data::Denter isn't in Perl's core distribution and isn't listed in the Makefile.PL's dependencies either, this test fails. The two lines seem to be for visual feedback only, so I'd suggest removing them or switching to Data::Dumper instead.