nagios4/tap/tests/pass/test.pl

18 lines
260 B
Perl
Raw Normal View History

2017-05-19 22:22:40 +02:00
#!/usr/bin/perl
use warnings;
use strict;
use Test::More;
my $rc = 0;
$rc = plan tests => 2;
diag("Returned: " . sprintf('%d', $rc));
$rc = pass('test to pass');
diag("Returned: $rc");
$rc = pass('test to pass with extra string');
diag("Returned: $rc");