diff options
author | Gisle Aas <aas@aas.no> | 1996-09-22 00:59:56 +0200 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-09-22 00:59:56 +0200 |
commit | 1a3850a59b9c97ab76cb84b312a9b18e9a2cb3d6 (patch) | |
tree | 3da90e5219cc38029477ff010a08c6dc5add516f /t/lib/findbin.t | |
parent | 782014036373aee8ffee0c1b2c77f3a283d90dc7 (diff) | |
download | perl-1a3850a59b9c97ab76cb84b312a9b18e9a2cb3d6.tar.gz |
More standard library test scripts
This is a collection of test scripts for the standard library modules.
Some of the tests does not pass unless some of the patches I have sent
out are applied.
Diffstat (limited to 't/lib/findbin.t')
-rw-r--r-- | t/lib/findbin.t | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/t/lib/findbin.t b/t/lib/findbin.t new file mode 100644 index 0000000000..8d5347cdb7 --- /dev/null +++ b/t/lib/findbin.t @@ -0,0 +1,13 @@ +#!./perl + +BEGIN { + chdir 't' if -d 't'; + @INC = '../lib'; +} + +print "1..1\n"; + +use FindBin qw($Bin); + +print "not " unless $Bin =~ m,t/lib$,; +print "ok 1\n"; |