]> git.ozlabs.org Git - ponghero.git/blob - ccan/ccan_tools/libtap/tests/diag/test.pl
d5971cd6f44c69ca283715822730d13558a57a34
[ponghero.git] / ccan / ccan_tools / libtap / tests / diag / test.pl
1 #!/usr/bin/perl
2
3 use warnings;
4 use strict;
5
6 use Test::More;
7
8 plan tests => 2;
9
10 diag("A diagnostic message");
11
12 ok(1, 'test 1') or diag "ok() failed, and shouldn't";
13 ok(0, 'test 2') or diag "ok() passed, and shouldn't";