summaryrefslogtreecommitdiff
path: root/ext/IO_Compress_Zlib/t/109merge-zip.t
diff options
context:
space:
mode:
Diffstat (limited to 'ext/IO_Compress_Zlib/t/109merge-zip.t')
-rw-r--r--ext/IO_Compress_Zlib/t/109merge-zip.t24
1 files changed, 24 insertions, 0 deletions
diff --git a/ext/IO_Compress_Zlib/t/109merge-zip.t b/ext/IO_Compress_Zlib/t/109merge-zip.t
new file mode 100644
index 0000000000..74adf09bf9
--- /dev/null
+++ b/ext/IO_Compress_Zlib/t/109merge-zip.t
@@ -0,0 +1,24 @@
+BEGIN {
+ if ($ENV{PERL_CORE}) {
+ chdir 't' if -d 't';
+ @INC = ("../lib", "lib/compress");
+ }
+}
+
+use lib qw(t t/compress);
+use strict;
+use warnings;
+
+use Test::More skip_all => "not implemented yet";
+
+
+use IO::Compress::Zip qw($ZipError) ;
+use IO::Uncompress::Unzip qw($UnzipError) ;
+
+sub identify
+{
+ 'IO::Compress::Zip';
+}
+
+require "merge.pl" ;
+run();