aboutsummaryrefslogtreecommitdiff
path: root/tap/tests/pass/test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tap/tests/pass/test.pl')
-rw-r--r--tap/tests/pass/test.pl17
1 files changed, 17 insertions, 0 deletions
diff --git a/tap/tests/pass/test.pl b/tap/tests/pass/test.pl
new file mode 100644
index 00000000..8abc92e7
--- /dev/null
+++ b/tap/tests/pass/test.pl
@@ -0,0 +1,17 @@
+#!/usr/bin/perl
+
+use warnings;
+use strict;
+
+use Test::More;
+
+my $rc = 0;
+
+$rc = plan tests => 2;
+diag("Returned: " . sprintf('%d', $rc));
+
+$rc = pass('test to pass');
+diag("Returned: $rc");
+
+$rc = pass('test to pass with extra string');
+diag("Returned: $rc");