diff options
Diffstat (limited to 'cpan/IO-Compress/t/108anyunc-deflate.t')
-rw-r--r-- | cpan/IO-Compress/t/108anyunc-deflate.t | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/cpan/IO-Compress/t/108anyunc-deflate.t b/cpan/IO-Compress/t/108anyunc-deflate.t new file mode 100644 index 0000000000..ed5e6b5efe --- /dev/null +++ b/cpan/IO-Compress/t/108anyunc-deflate.t @@ -0,0 +1,29 @@ +BEGIN { + if ($ENV{PERL_CORE}) { + chdir 't' if -d 't'; + @INC = ("../lib", "lib/compress"); + } +} + +use lib qw(t t/compress); +use strict; +use warnings; + +use IO::Uncompress::AnyUncompress qw($AnyUncompressError) ; + +use IO::Compress::Deflate qw($DeflateError) ; +use IO::Uncompress::Inflate qw($InflateError) ; + +sub getClass +{ + 'AnyUncompress'; +} + + +sub identify +{ + 'IO::Compress::Deflate'; +} + +require "any.pl" ; +run(); |