Subject: | add Test::Deep to preloaded dependencies |
I stumbled over this while bundling Test::Deep with a module
of mine using Module::Install via
include_deps 'Test::Deep';
Module::Install uses Module::ScanDeps to find module dependencies and
included only about a third of the necessary Test::Deep::* modules.
Attached patch loads everything below Test/Deep.
Subject: | module-scandeps.patch |
--- Module/ScanDeps.pm.orig 2006-03-22 16:46:57.000988000 +0100
+++ Module/ScanDeps.pm 2006-03-22 16:51:29.718199000 +0100
@@ -289,6 +289,7 @@
) ],
'Template.pm' => 'sub',
'Term/ReadLine.pm' => 'sub',
+ 'Test/Deep.pm' => 'sub',
'Tk.pm' => sub {
$SeenTk = 1;
qw( Tk/FileSelect.pm Encode/Unicode.pm );