]> git.ozlabs.org Git - ponghero.git/blob - 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
1 #!/usr/bin/perl
2
3 use warnings;
4 use strict;
5
6 use Test::More;
7
8 my $rc = 0;
9
10 plan tests => 2;
11
12 $rc = pass('test to pass');
13 diag("Returned: $rc");
14
15 $rc = pass('test to pass with extra string');
16 diag("Returned: $rc");