]> git.vpit.fr Git - perl/modules/Test-Leaner.git/commitdiff
Get rid of skip_all()
authorVincent Pit <vince@profvince.com>
Tue, 28 Dec 2010 11:07:15 +0000 (12:07 +0100)
committerVincent Pit <vince@profvince.com>
Tue, 28 Dec 2010 14:33:03 +0000 (15:33 +0100)
It is only implemented in Test::Builder.

lib/Test/Leaner.pm
t/01-import.t

index d11c4e212cbe22f298ea38f2026880160484fed7..4aaa5e43b4dd07be15fddccb18dd02e879ef91fa 100644 (file)
@@ -160,7 +160,6 @@ sub plan {
 
 our @EXPORT = qw<
  plan
- skip_all
  skip
  done_testing
  pass
@@ -210,15 +209,6 @@ sub import {
  goto &Exporter::import;
 }
 
-=head2 C<skip_all $reason>
-
-=cut
-
-sub skip_all {
- @_ = (skip_all => $_[0]);
- goto &plan;
-}
-
 =head2 C<< skip $reason => $count >>
 
 =cut
index d612ed4ff607030258275327f90d2615b35186dc..55f581decb0eef5e953fb0d829c691d0634ad55f 100644 (file)
@@ -7,13 +7,12 @@ use Test::More ();
 
 BEGIN { *tm_is = \&Test::More::is }
 
-Test::More::plan(tests => 2 * 15);
+Test::More::plan(tests => 2 * 14);
 
 require Test::Leaner;
 
 my @syms = qw<
  plan
- skip_all
  skip
  done_testing
  pass