New test welcome.
authorJarkko Hietaniemi <jhi@iki.fi>
Thu, 6 Sep 2001 03:20:02 +0000 (03:20 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Thu, 6 Sep 2001 03:20:02 +0000 (03:20 +0000)
p4raw-id: //depot/perl@11907

lib/Test/Simple/t/simple.t [new file with mode: 0644]

diff --git a/lib/Test/Simple/t/simple.t b/lib/Test/Simple/t/simple.t
new file mode 100644 (file)
index 0000000..7f4f1f4
--- /dev/null
@@ -0,0 +1,10 @@
+use strict;
+
+BEGIN { $| = 1; $^W = 1; }
+
+use Test::Simple tests => 3;
+
+ok(1, 'compile');
+
+ok(1);
+ok(1, 'foo');