summaryrefslogtreecommitdiff
path: root/cpan/Test-Simple/t/simple.t
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/Test-Simple/t/simple.t')
-rw-r--r--cpan/Test-Simple/t/simple.t17
1 files changed, 17 insertions, 0 deletions
diff --git a/cpan/Test-Simple/t/simple.t b/cpan/Test-Simple/t/simple.t
new file mode 100644
index 0000000000..7297e9d6dd
--- /dev/null
+++ b/cpan/Test-Simple/t/simple.t
@@ -0,0 +1,17 @@
+BEGIN {
+ if( $ENV{PERL_CORE} ) {
+ chdir 't';
+ @INC = '../lib';
+ }
+}
+
+use strict;
+
+BEGIN { $| = 1; $^W = 1; }
+
+use Test::Simple tests => 3;
+
+ok(1, 'compile');
+
+ok(1);
+ok(1, 'foo');