Add Libtap as a bundled library (does not change any behaviour without --enable-libtap)
[monitoring-plugins.git] / tap / tests / pass / test.pl
blob8abc92e7c7dc68a0c9d3f25fb8442061442b0d39
1 #!/usr/bin/perl
3 use warnings;
4 use strict;
6 use Test::More;
8 my $rc = 0;
10 $rc = plan tests => 2;
11 diag("Returned: " . sprintf('%d', $rc));
13 $rc = pass('test to pass');
14 diag("Returned: $rc");
16 $rc = pass('test to pass with extra string');
17 diag("Returned: $rc");