This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Move files from ext/Compress/IO to ext/IO/Compress
[perl5.git] / ext / IO / Compress / Zlib / t / 100generic-gzip.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::Compress::Gzip qw($GzipError) ;
13use IO::Uncompress::Gunzip qw($GunzipError) ;
14
15sub identify
16{
17 return 'IO::Compress::Gzip';
18}
19
20require "generic.pl" ;
21run();