blob: bac6a6a9d0fc6cfc2306ca162a442136bd4dda08 [file] [log] [blame]
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 IO::Uncompress::AnyUncompress qw($AnyUncompressError) ;
use IO::Compress::Gzip qw($GzipError) ;
use IO::Uncompress::Gunzip qw($GunzipError) ;
sub getClass
{
'AnyUncompress';
}
sub identify
{
'IO::Compress::Gzip';
}
require "any.pl" ;
run();