summaryrefslogtreecommitdiffstats
path: root/tap/tests/plan/not-enough-tests/test.pl
blob: 73787a7c909e32f63845b39a934b30ee7c1bc684 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl

use warnings;
use strict;

use Test::More;

my $rc = 0;

$rc = plan tests => 1;
diag("Returned: " . sprintf("%d", $rc));

$rc = ok(1);
diag("Returned: $rc");

$rc = ok(1);
diag("Returned: $rc");

$rc = ok(1);
diag("Returned: $rc");