1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Description: Use the config file in the test suite
Forwarded: no
Author: Ignace Mouzannar <mouzannar@gmail.com>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2009-10-18
--- a/t/basic.t
+++ b/t/basic.t
@@ -42,13 +42,13 @@
ok(
run(
- "-Mblib ./perlindex -idir $tmp --index $cwd/README $cwd/MANIFEST $cwd/perlindex.PL",
+ "-Mblib ./perlindex -conf debian/config/config -idir $tmp --index $cwd/README $cwd/MANIFEST $cwd/perlindex.PL",
sub { print "[[$_[0]]]\n"; $_[0] =~ /MANIFEST/ }
)
);
ok(
run(
- "-Mblib ./perlindex -idir $tmp --nomenu index",
+ "-Mblib ./perlindex -conf debian/config/config -idir $tmp --nomenu index",
sub { print "[[$_[0]]]\n"; $_[0] =~ /perlindex.PL/ }
)
);
|