Move IO::Compress from ext/ to cpan/
[p5sagit/p5-mst-13.2.git] / cpan / IO-Compress / t / 101truncate-zip.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
12#use Test::More skip_all => "not implemented yet";
13use Test::More ;
14
15BEGIN {
16 # use Test::NoWarnings, if available
17 my $extra = 0 ;
18 $extra = 1
19 if eval { require Test::NoWarnings ; import Test::NoWarnings; 1 };
20
ea6efd2c 21 plan tests => 2404 + $extra;
25f0751f 22
23};
24
25
26
27
28
29use IO::Compress::Zip qw($ZipError) ;
30use IO::Uncompress::Unzip qw($UnzipError) ;
31
32sub identify
33{
34 'IO::Compress::Zip';
35}
36
37require "truncate.pl" ;
38run();