summaryrefslogtreecommitdiffstats
path: root/tap/tests/plan/too-many-tests/test.pl
blob: 0a1666baeabc9b03c45e0c8afc0116c51533eccd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl

use warnings;
use strict;

use Test::More;

my $rc = 0;

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

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

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