summaryrefslogtreecommitdiff
path: root/cpan/IO-Compress/t/109merge-zip.t
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-10-02 11:11:19 +0100
committerNicholas Clark <nick@ccl4.org>2009-10-02 11:11:19 +0100
commit3fd969f44926f311e1c67d9470a9e936f7af2d73 (patch)
treece6e701f0f80bfd0de9befe7b1bf766e37a6cfbb /cpan/IO-Compress/t/109merge-zip.t
parent70b2007073159a8b94a74b0b9ba406945c45917d (diff)
downloadperl-3fd969f44926f311e1c67d9470a9e936f7af2d73.tar.gz
Move IO::Compress from ext/ to cpan/
Diffstat (limited to 'cpan/IO-Compress/t/109merge-zip.t')
-rw-r--r--cpan/IO-Compress/t/109merge-zip.t24
1 files changed, 24 insertions, 0 deletions
diff --git a/cpan/IO-Compress/t/109merge-zip.t b/cpan/IO-Compress/t/109merge-zip.t
new file mode 100644
index 0000000000..74adf09bf9
--- /dev/null
+++ b/cpan/IO-Compress/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();