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