Change 11907 by jhi@alpha on 2001/09/06 03:20:02
New test welcome.
Affected files ...
... //depot/perl/lib/Test/Simple/t/simple.t#3 add
Differences ...
==== //depot/perl/lib/Test/Simple/t/simple.t#3 (text) ====
Index: perl/lib/Test/Simple/t/simple.t
--- perl/lib/Test/Simple/t/simple.t.~1~ Wed Sep 5 21:30:05 2001
+++ perl/lib/Test/Simple/t/simple.t Wed Sep 5 21:30:05 2001
@@ -0,0 +1,10 @@
+use strict;
+
+BEGIN { $| = 1; $^W = 1; }
+
+use Test::Simple tests => 3;
+
+ok(1, 'compile');
+
+ok(1);
+ok(1, 'foo');
End of Patch.