summaryrefslogtreecommitdiffstats
path: root/tap/tests/plan/no_plan/test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tap/tests/plan/no_plan/test.pl')
-rw-r--r--tap/tests/plan/no_plan/test.pl14
1 files changed, 14 insertions, 0 deletions
diff --git a/tap/tests/plan/no_plan/test.pl b/tap/tests/plan/no_plan/test.pl
new file mode 100644
index 0000000..19e42b5
--- /dev/null
+++ b/tap/tests/plan/no_plan/test.pl
@@ -0,0 +1,14 @@
1#!/usr/bin/perl
2
3use warnings;
4use strict;
5
6my $rc = 0;
7
8use Test::More;
9
10$rc = plan qw(no_plan);
11diag("Returned: " . sprintf("%d", $rc));
12
13$rc = ok(1);
14diag("Returned: $rc");