diff options
Diffstat (limited to 'ext/IO_Compress_Zlib/t/108anyunc-zip.t')
-rw-r--r-- | ext/IO_Compress_Zlib/t/108anyunc-zip.t | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ext/IO_Compress_Zlib/t/108anyunc-zip.t b/ext/IO_Compress_Zlib/t/108anyunc-zip.t new file mode 100644 index 0000000000..72e015a6a1 --- /dev/null +++ b/ext/IO_Compress_Zlib/t/108anyunc-zip.t @@ -0,0 +1,29 @@ +BEGIN { + if ($ENV{PERL_CORE}) { + chdir 't' if -d 't'; + @INC = ("../lib", "lib/compress"); + } +} + +use lib 't/compress'; +use strict; +use warnings; + +use IO::Uncompress::AnyUncompress qw($AnyUncompressError) ; + +use IO::Compress::Zip qw($ZipError) ; +use IO::Uncompress::Unzip qw($UnzipError) ; + +sub getClass +{ + 'AnyUncompress'; +} + + +sub identify +{ + 'IO::Compress::Zip'; +} + +require "any.pl" ; +run(); |