]> git.ozlabs.org Git - ccan/blob - ccan_tools/libtap/tests/ok/ok-hash/test.pl
First cut of hashing routines.
[ccan] / ccan_tools / libtap / tests / ok / ok-hash / 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 => 4;
11
12 $rc = ok(1, 'Test with no hash');
13 diag("Returned: $rc");
14
15 $rc = ok(1, 'Test with one # hash');
16 diag("Returned: $rc");
17
18 $rc = ok(1, 'Test with # two # hashes');
19 diag("Returned: $rc");
20
21 $rc = ok(1, 'Test with ## back to back hashes');
22 diag("Returned: $rc");