This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
POSIX.xs: Never pass NULL to ctermid()
[perl5.git] / cpan / IO-Compress / t / 002any-zip.t
CommitLineData
25f0751f
PM
1BEGIN {
2 if ($ENV{PERL_CORE}) {
3 chdir 't' if -d 't';
4 @INC = ("../lib", "lib/compress");
5 }
6}
7
8use lib qw(t t/compress);
9use strict;
10use warnings;
11
12use IO::Uncompress::AnyInflate qw($AnyInflateError) ;
13
14use IO::Compress::Zip qw($ZipError) ;
15use IO::Uncompress::Unzip qw($UnzipError) ;
16
17sub getClass
18{
19 'AnyInflate';
20}
21
22
23sub identify
24{
25 'IO::Compress::Zip';
26}
27
28require "any.pl" ;
29run();