Add test preambles to Compress::Zlib.
Rafael Garcia-Suarez [Wed, 5 Oct 2005 21:03:29 +0000 (21:03 +0000)]
Remove 99pod.t, useless in the core

p4raw-id: //depot/perl@25698

26 files changed:
MANIFEST
ext/Compress/Zlib/t/01version.t
ext/Compress/Zlib/t/02zlib.t
ext/Compress/Zlib/t/03zlib-v1.t
ext/Compress/Zlib/t/04def.t
ext/Compress/Zlib/t/05examples.t
ext/Compress/Zlib/t/06gzsetp.t
ext/Compress/Zlib/t/07bufsize.t
ext/Compress/Zlib/t/08encoding.t
ext/Compress/Zlib/t/09gziphdr.t
ext/Compress/Zlib/t/10defhdr.t
ext/Compress/Zlib/t/11truncate.t
ext/Compress/Zlib/t/12any.t
ext/Compress/Zlib/t/13prime.t
ext/Compress/Zlib/t/14gzopen.t
ext/Compress/Zlib/t/15multi.t
ext/Compress/Zlib/t/16oneshot.t
ext/Compress/Zlib/t/17isize.t
ext/Compress/Zlib/t/18lvalue.t
ext/Compress/Zlib/t/19destroy.t
ext/Compress/Zlib/t/20tied.t
ext/Compress/Zlib/t/21newtied.t
ext/Compress/Zlib/t/22merge.t
ext/Compress/Zlib/t/23misc.t
ext/Compress/Zlib/t/99pod.t [deleted file]
ext/Compress/Zlib/t/globmapper.t

index 531479d..ef0351c 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -198,7 +198,6 @@ ext/Compress/Zlib/t/20tied.t        Compress::Zlib
 ext/Compress/Zlib/t/21newtied.t        Compress::Zlib
 ext/Compress/Zlib/t/22merge.t  Compress::Zlib
 ext/Compress/Zlib/t/23misc.t   Compress::Zlib
-ext/Compress/Zlib/t/99pod.t    Compress::Zlib
 ext/Compress/Zlib/t/globmapper.t       Compress::Zlib
 ext/Compress/Zlib/typemap      Compress::Zlib
 ext/Compress/Zlib/Zlib.pm      Compress::Zlib
index bdb8a9a..f1accce 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict ;
index 530e221..032caf0 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index a0950c2..de81966 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index b0416e8..ff46f58 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index 82b30d3..8d96b9b 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 
index 7506c5a..1723da4 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index 0670c06..df518bf 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index 978212e..1dab466 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index 8abb70a..f71c8cf 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index 9c109ec..d75431c 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index a4e7fbe..5aa9ef0 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index 7939358..77cf608 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
  
index bc8a09e..959a83d 100644 (file)
@@ -1,3 +1,10 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
+
 use lib 't';
 use strict;
 use warnings;
index b15c353..ea30fd7 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index fbbc64e..dee57dd 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index b08960a..ad6a817 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index 4241fe7..ef7bb8b 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict ;
index 5f9e43d..d63ffba 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index a2671f7..c2d0361 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index 7d708d1..778075d 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index 9238786..bb93516 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index bdffaa3..07fa185 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
index f1619d8..6e472a1 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict;
diff --git a/ext/Compress/Zlib/t/99pod.t b/ext/Compress/Zlib/t/99pod.t
deleted file mode 100644 (file)
index c86213f..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-use lib 't';
-use Test::More;
-
-eval "use Test::Pod 1.00";
-
-plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
-
-all_pod_files_ok();
-
index 8d90e25..b30143e 100644 (file)
@@ -1,3 +1,9 @@
+BEGIN {
+    if ($ENV{PERL_CORE} {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use lib 't';
 use strict ;