From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Thu, 6 Sep 2001 03:20:02 +0000 (+0000)
Subject: New test welcome.
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f0f0b3b669bd7c4393f5d948f975325333b4da29;p=p5sagit%2Fp5-mst-13.2.git

New test welcome.

p4raw-id: //depot/perl@11907
---

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