summaryrefslogtreecommitdiffstats
path: root/tap/tests/plan/no-tests/test.pl
blob: 93d2b3b8eb7f489b14065c6210852b73a962b7c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use warnings;
use strict;

use Test::More;

my $rc = 0;

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

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