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

15 lines
175 B
Perl

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