diff options
Diffstat (limited to 't/base/pat.t')
-rw-r--r-- | t/base/pat.t | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/t/base/pat.t b/t/base/pat.t new file mode 100644 index 0000000000..8ad88dd331 --- /dev/null +++ b/t/base/pat.t @@ -0,0 +1,11 @@ +#!./perl + +# $Header: pat.t,v 4.0 91/03/20 01:49:12 lwall Locked $ + +print "1..2\n"; + +# first test to see if we can run the tests. + +$_ = 'test'; +if (/^test/) { print "ok 1\n"; } else { print "not ok 1\n";} +if (/^foo/) { print "not ok 2\n"; } else { print "ok 2\n";} |