]> git.ozlabs.org Git - ponghero.git/blobdiff - ccan/ccan_tools/libtap/tests/pass/test.pl
Prepare for release: rename to ponghero and pull in ccan.
[ponghero.git] / ccan / ccan_tools / libtap / tests / pass / test.pl
diff --git a/ccan/ccan_tools/libtap/tests/pass/test.pl b/ccan/ccan_tools/libtap/tests/pass/test.pl
new file mode 100644 (file)
index 0000000..b532f65
--- /dev/null
@@ -0,0 +1,16 @@
+#!/usr/bin/perl
+
+use warnings;
+use strict;
+
+use Test::More;
+
+my $rc = 0;
+
+plan tests => 2;
+
+$rc = pass('test to pass');
+diag("Returned: $rc");
+
+$rc = pass('test to pass with extra string');
+diag("Returned: $rc");