From f0f0b3b669bd7c4393f5d948f975325333b4da29 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Thu, 6 Sep 2001 03:20:02 +0000 Subject: [PATCH] New test welcome. p4raw-id: //depot/perl@11907 --- lib/Test/Simple/t/simple.t | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lib/Test/Simple/t/simple.t 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'); -- 2.7.4