Move if from ext/ to cpan/
[p5sagit/p5-mst-13.2.git] / ext / IO-Compress / t / 108anyunc-bzip2.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 qw(t t/compress);
9 use strict;
10 use warnings;
11
12 use IO::Uncompress::AnyUncompress qw($AnyUncompressError) ;
13
14 use IO::Compress::Bzip2     qw($Bzip2Error) ;
15 use IO::Uncompress::Bunzip2 qw($Bunzip2Error) ;
16
17 sub getClass
18 {
19     'AnyUncompress';
20 }
21
22
23 sub identify
24 {
25     'IO::Compress::Bzip2';
26 }
27
28 require "any.pl" ;
29 run();