use Exporter 'import';
use Test::More;
-our @EXPORT = qw{skip_meta meta_can_ok};
+our @EXPORT = qw{skip_meta meta_can_ok skip_all_meta};
sub SKIP_META_MESSAGE() {
'meta-tests disabled';
$ENV{SKIP_META_TESTS};
}
+sub skip_all_meta {
+ my $plan = shift;
+ plan skip_all => SKIP_META_MESSAGE if skip_meta_condition;
+ plan tests => $plan;
+}
+
sub skip_meta (&$) {
my $fn = shift;
my $amount = shift;