diff options
Diffstat (limited to 'tap/tests/plan/not-enough-tests/test.pl')
| -rw-r--r-- | tap/tests/plan/not-enough-tests/test.pl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tap/tests/plan/not-enough-tests/test.pl b/tap/tests/plan/not-enough-tests/test.pl new file mode 100644 index 00000000..73787a7c --- /dev/null +++ b/tap/tests/plan/not-enough-tests/test.pl | |||
| @@ -0,0 +1,20 @@ | |||
| 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 => 1; | ||
| 11 | diag("Returned: " . sprintf("%d", $rc)); | ||
| 12 | |||
| 13 | $rc = ok(1); | ||
| 14 | diag("Returned: $rc"); | ||
| 15 | |||
| 16 | $rc = ok(1); | ||
| 17 | diag("Returned: $rc"); | ||
| 18 | |||
| 19 | $rc = ok(1); | ||
| 20 | diag("Returned: $rc"); | ||
