Add lib path to ENV so that $^X can see it
Peter Rabbitson [Sun, 17 Jan 2010 22:27:49 +0000 (22:27 +0000)]
t/89dbicadmin.t

index e1f5a1e..a53ecf1 100644 (file)
@@ -3,7 +3,9 @@ use strict;
 use warnings;
 
 use Test::More;
+use Config;
 use lib qw(t/lib);
+$ENV{PERL5LIB} = join ($Config{path_sep}, @INC);
 use DBICTest;