This pointless incompatibility with Test::More has resulted in
many annoyingly broken test scripts.
t/test.pl Simple testing library
t/test_pl/can_isa_ok.t Tests for the simple testing library
t/test_pl/_num_to_alpha.t Tests for the simple testing library
+t/test_pl/plan_skip_all.t Tests for the simple testing library
t/test_pl/tempfile.t Tests for the simple testing library
t/thread_it.pl Run regression tests in a new thread
t/uni/attrs.t See if Unicode attributes work
}
} else {
my %plan = @_;
+ $plan{skip_all} and skip_all($plan{skip_all});
$n = $plan{tests};
}
_print "1..$n\n" unless $noplan;
--- /dev/null
+#!/usr/bin/env perl -w
+use strict;
+use warnings;
+
+BEGIN { require "test.pl"; }
+
+plan skip_all => "Test Test::More compatible plan skip_all => \$foo";