Fri Sep 27 11:05:06 2013: Request 89000 was acted upon. Transaction: Ticket created by zef...@fysh.org Queue: Module-ScanDeps Subject: test broken by indirect base.pm disuse Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: zef...@fysh.org Status: new Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=89000 >
Module-ScanDeps's t/3-static_oo_interface_real.t fails if the latest version of File-Temp is installed. The test assumes that base.pm will be an indirect dependency of the test script, but it was only used by File::Temp, and in the latest version it doesn't use it any more. Patch attached. -zefram
--- a/t/3-static_oo_interface_real.t 2012-02-21 15:25:41.000000000 +0000 +++ b/t/3-static_oo_interface_real.t 2013-09-27 15:00:14.794570552 +0000 @@ -3,7 +3,7 @@ use strict; use warnings; -use Test::More tests => 12; +use Test::More tests => 11; my $rv; my $root; @@ -23,7 +23,7 @@ $root = $0; my @deps = qw( Carp.pm Config.pm Exporter.pm Test/More.pm - base.pm constant.pm strict.pm vars.pm + constant.pm strict.pm vars.pm Module/ScanDeps.pm );