diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-10-08 10:26:01 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-10-08 14:35:40 +0200 |
commit | 2eaa221022c8a9ff79fb91fbe7a3e44eeaebff21 (patch) | |
tree | 7861c3eb538426d179608fce7214f233fa853721 | |
parent | f3ce0eb798df5e942a77ee79720ffb21932d29f4 (diff) | |
download | perl-2eaa221022c8a9ff79fb91fbe7a3e44eeaebff21.tar.gz |
Avoid using pragmata in fold.t - use may not work yet.
-rw-r--r-- | t/comp/fold.t | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/t/comp/fold.t b/t/comp/fold.t index 92a4fbe3e4..6b1821270d 100644 --- a/t/comp/fold.t +++ b/t/comp/fold.t @@ -1,12 +1,10 @@ -#!./perl +#!./perl -w -BEGIN { - chdir 't'; - @INC = '../lib'; - require './test.pl'; -} -use strict; -use warnings; +require './test.pl'; + +# Uncomment this for testing, but don't leave it in for "production", as +# we've not yet verified that use works. +# use strict; plan (13); |