]> git.ozlabs.org Git - ccan/blob - ccan_tools/libtap/tests/diag/test.pl
First cut of hashing routines.
[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";