summaryrefslogtreecommitdiffstats
path: root/tap/tests/plan/sane/test.pl
blob: 35c4ef2fa92652194ee3e5c5171d64e0665c11ce (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 => 1;
diag("Returned: " . sprintf("%d", $rc));

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