change test utils to run from the source tree, #37340
[freeside.git] / FS-Test / bin / freeside-test-fetch
index ccc8528..9530057 100755 (executable)
@@ -1,8 +1,14 @@
 #!/usr/bin/perl
 
 use strict;
 #!/usr/bin/perl
 
 use strict;
-use FS::Test;
 use Getopt::Std;
 use Getopt::Std;
+use File::Spec;
+
+my @dirs = File::Spec->splitdir(File::Spec->rel2abs(__FILE__));
+splice @dirs, -2; # bin/freeside-test-run
+push @INC, File::Spec->catdir( @dirs, 'lib' );
+eval "use FS::Test;";
+die $@ if $@;
 
 my %opt;
 
 
 my %opt;