diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-07-06 03:16:04 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-07-06 03:16:04 +0000 |
commit | 435227a33b17bfcf5ae6d384a20f5ccde574c19e (patch) | |
tree | b0b5567422a76fc50891138a2ad119267ff8d137 /t | |
parent | 789a1909d64c731ba889aa979b70e54fda79f91d (diff) | |
download | perl-435227a33b17bfcf5ae6d384a20f5ccde574c19e.tar.gz |
Config is being used.
p4raw-id: //depot/cfgperl@6321
Diffstat (limited to 't')
-rwxr-xr-x | t/op/method.t | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/t/op/method.t b/t/op/method.t index d2f1300690..6e25310734 100755 --- a/t/op/method.t +++ b/t/op/method.t @@ -4,6 +4,11 @@ # test method calls and autoloading. # +BEGIN { + chdir 't' if -d 't'; + unshift @INC, '../lib' if -d '../lib'; +} + print "1..53\n"; @A::ISA = 'B'; |