diff options
Diffstat (limited to 'tap/tests/ok/ok-hash/test.pl')
-rw-r--r-- | tap/tests/ok/ok-hash/test.pl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tap/tests/ok/ok-hash/test.pl b/tap/tests/ok/ok-hash/test.pl new file mode 100644 index 00000000..306ddca0 --- /dev/null +++ b/tap/tests/ok/ok-hash/test.pl | |||
@@ -0,0 +1,24 @@ | |||
1 | #!/usr/bin/perl | ||
2 | |||
3 | use warnings; | ||
4 | use strict; | ||
5 | |||
6 | use Test::More; | ||
7 | |||
8 | my $rc = 0; | ||
9 | |||
10 | $rc = plan tests => 4; | ||
11 | diag("Returned: " . sprintf("%d", $rc)); | ||
12 | |||
13 | |||
14 | $rc = ok(1, 'Test with no hash'); | ||
15 | diag("Returned: $rc"); | ||
16 | |||
17 | $rc = ok(1, 'Test with one # hash'); | ||
18 | diag("Returned: $rc"); | ||
19 | |||
20 | $rc = ok(1, 'Test with # two # hashes'); | ||
21 | diag("Returned: $rc"); | ||
22 | |||
23 | $rc = ok(1, 'Test with ## back to back hashes'); | ||
24 | diag("Returned: $rc"); | ||