summaryrefslogtreecommitdiff
path: root/lib/Test/t/success.t
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Test/t/success.t')
-rw-r--r--lib/Test/t/success.t11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/Test/t/success.t b/lib/Test/t/success.t
new file mode 100644
index 0000000000..a580f0a567
--- /dev/null
+++ b/lib/Test/t/success.t
@@ -0,0 +1,11 @@
+# -*-perl-*-
+use strict;
+use Test;
+BEGIN { plan tests => 11 }
+
+ok(ok(1));
+ok(ok('fixed', 'fixed'));
+ok(skip(1,0));
+ok(undef, undef);
+ok(ok 'the brown fox jumped over the lazy dog', '/lazy/');
+ok(ok 'the brown fox jumped over the lazy dog', 'm,fox,');