Change 11844 by jhi@alpha on 2001/09/03 12:42:06
Patch the Filter::Simple test to work with
the core test suite (since the FilterTest.pm
is in t/lib, not in lib).
Affected files ...
... //depot/perl/lib/Filter/Simple/t/filter.t#2 edit
Differences ...
==== //depot/perl/lib/Filter/Simple/t/filter.t#2 (text) ====
Index: perl/lib/Filter/Simple/t/filter.t
--- perl/lib/Filter/Simple/t/filter.t.~1~ Mon Sep 3 06:45:05 2001
+++ perl/lib/Filter/Simple/t/filter.t Mon Sep 3 06:45:05 2001
@@ -1,3 +1,8 @@
+BEGIN {
+ chdir('t') if -d 't';
+ @INC = 'lib';
+}
+
use FilterTest qr/not ok/ => "ok", fail => "ok";
print "1..6\n";
End of Patch.