summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorChip Salzenberg <chip@atlantic.net>1997-02-18 13:22:00 +1200
committerChip Salzenberg <chip@atlantic.net>1997-02-18 13:22:00 +1200
commit9d17b0a6244cecb9ba7d42c6a1a882fd933f6f45 (patch)
tree21f7ca706ea0bfa3add8a7f39b83cdd0809d396e /t
parent4fdae80067c447c675a6ac92c7959d2206e207ba (diff)
downloadperl-9d17b0a6244cecb9ba7d42c6a1a882fd933f6f45.tar.gz
[shell changes from patch from perl5.003_26 to perl5.003_27]
Change from running these commands: # this never worked anyway rm -f lib/Fatal.pm rm -f t/lib/fatal.t # ready to patch exit 0
Diffstat (limited to 't')
-rwxr-xr-xt/lib/fatal.t23
1 files changed, 0 insertions, 23 deletions
diff --git a/t/lib/fatal.t b/t/lib/fatal.t
deleted file mode 100755
index fe2f63d072..0000000000
--- a/t/lib/fatal.t
+++ /dev/null
@@ -1,23 +0,0 @@
-#!./perl
-
-BEGIN {
- chdir 't' if -d 't';
- @INC = '../lib';
-}
-
-print "1..2\n";
-
-sub false { 0; }
-
-sub true { 1; }
-
-use Fatal qw(true false);
-
-eval { true(); };
-
-print "not " if $@;
-print "ok 1\n";
-
-eval { false(); };
-print "not " unless $@;
-print "ok 2\n";