From b121a061d8f220dc6c842ea187c12a199526333a Mon Sep 17 00:00:00 2001 From: Scott Walters Date: Thu, 21 Aug 2014 07:37:22 -0400 Subject: [PATCH] maybe I'm doing the wrong thing by adding use lines for test modules that unit tests use. maybe there's some magic that's supposed to automatically use those things, even though they're hidden in deeply buried paths with no machine predictable naming scheme. I can't imagine that these unit tests passed before unless there is/was some magic. I hobbled this in to working with a use lib and a use for the module, but after doing this second one of these, I'm having serious doubts about whether I'm just spackling over the problem. --- t/SOAP/WSDL/Generator/Template/XSD/Import.t | 3 +++ 1 file changed, 3 insertions(+) diff --git a/t/SOAP/WSDL/Generator/Template/XSD/Import.t b/t/SOAP/WSDL/Generator/Template/XSD/Import.t index c44737d..9b0b518 100644 --- a/t/SOAP/WSDL/Generator/Template/XSD/Import.t +++ b/t/SOAP/WSDL/Generator/Template/XSD/Import.t @@ -5,6 +5,9 @@ use File::Spec; use File::Path; use diagnostics; +use lib "t/SOAP/WSDL/Generator/Template/XSD/testlib"; +use MyTypes::TMessage; + my $path = File::Spec->rel2abs( dirname __FILE__ ); my ($volume, $dir) = File::Spec->splitpath($path, 1); my @dir_from = File::Spec->splitdir($dir);