]> git.ozlabs.org Git - ccan/blob - ccan_tools/libtap/tests/ok/ok-numeric/test.pl
ddc8c164e386ceaa458f742e98ce82586aaea187
[ccan] / ccan_tools / libtap / tests / ok / ok-numeric / 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 => 3;
11
12 $rc = ok(1, 'First test');
13 diag("Returned: $rc");
14
15 $rc = ok(1, '1');
16 diag("Returned: $rc");
17
18 $rc = ok(1, 'Third test');
19 diag("Returned: $rc");