nagios4/tap/tests/plan/no_plan/test.pl
2017-05-19 22:22:40 +02:00

15 lines
176 B
Perl

#!/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");