Code

Add Libtap as a bundled library (does not change any behaviour without --enable-libtap)
[nagiosplug.git] / tap / tests / plan / too-many-plans / test.pl
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");
16 $rc = plan tests => 1;
17 diag("Returned: $rc");
19 $rc = ok(0);
20 diag("Returned: $rc");