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

use warnings;
use strict;

my $rc = 0;

use Test::More;

$rc = plan qw(no_plan);
diag("Returned: " . sprintf("%d", $rc));

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