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