diff options
Diffstat (limited to 'tap/tests/plan/skip_all/test.pl')
-rw-r--r-- | tap/tests/plan/skip_all/test.pl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tap/tests/plan/skip_all/test.pl b/tap/tests/plan/skip_all/test.pl new file mode 100644 index 00000000..32555724 --- /dev/null +++ b/tap/tests/plan/skip_all/test.pl @@ -0,0 +1,11 @@ +#!/usr/bin/perl + +use warnings; +use strict; + +use Test::More; + +my $rc = 0; + +$rc = plan skip_all => "No good reason"; +diag("Returned: " . sprintf("%d", $rc)); |