diff options
Diffstat (limited to 'cpan/IO-Compress/t/110encode-rawdeflate.t')
-rw-r--r-- | cpan/IO-Compress/t/110encode-rawdeflate.t | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cpan/IO-Compress/t/110encode-rawdeflate.t b/cpan/IO-Compress/t/110encode-rawdeflate.t new file mode 100644 index 0000000000..58fa7417b1 --- /dev/null +++ b/cpan/IO-Compress/t/110encode-rawdeflate.t @@ -0,0 +1,21 @@ +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::Compress::RawDeflate qw($RawDeflateError) ; +use IO::Uncompress::RawInflate qw($RawInflateError) ; + +sub identify +{ + 'IO::Compress::RawDeflate'; +} + +require "encode.pl" ; +run(); |