Move IO::Compress from ext/ to cpan/
[p5sagit/p5-mst-13.2.git] / cpan / IO-Compress / t / 102tied-bzip2.t
CommitLineData
25f0751f 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
319fab50 12use IO::Compress::Bzip2 qw($Bzip2Error) ;
13use IO::Uncompress::Bunzip2 qw($Bunzip2Error) ;
25f0751f 14
15sub identify
16{
319fab50 17 'IO::Compress::Bzip2';
25f0751f 18}
19
20require "tied.pl" ;
21run();