Compress::Zlib becomes zlib agnostic
[p5sagit/p5-mst-13.2.git] / ext / Compress / Zlib / t / 04generic-rawdeflate.t
1 BEGIN {
2     if ($ENV{PERL_CORE}) {
3         chdir 't' if -d 't';
4         @INC = ("../lib", "lib/compress");
5     }
6 }
7
8 use lib 't';
9 use strict;
10 use warnings;
11
12 use IO::Compress::RawDeflate   qw($RawDeflateError) ;
13 use IO::Uncompress::RawInflate qw($RawInflateError) ;
14
15 sub identify
16 {
17     'IO::Compress::RawDeflate';
18 }
19
20 require "generic.pl" ;
21 run();