Test mit PPI nur durchführen, wenn PPI installiert ist.
authorSven Schöling <s.schoeling@linet-services.de>
Mon, 14 Mar 2011 16:47:49 +0000 (17:47 +0100)
committerSven Schöling <s.schoeling@linet-services.de>
Wed, 26 Oct 2011 13:21:36 +0000 (15:21 +0200)
t/structure/no_lexicals_in_postif.t

index 960b9ab..8532ab1 100644 (file)
@@ -1,11 +1,13 @@
 use strict;
-
 use lib 't';
-
 use Support::Files;
+use Test::More;
 
-use Test::More tests => scalar(@Support::Files::testitems);
-use PPI;
+if (eval { require PPI; 1 }) {
+  plan tests => scalar(@Support::Files::testitems);
+} else {
+  plan skip_all => "PPI not installed";
+}
 
 my $fh;
 {