summaryrefslogtreecommitdiff
path: root/ext/IO_Compress_Zlib/t/100generic-rawdeflate.t
diff options
context:
space:
mode:
Diffstat (limited to 'ext/IO_Compress_Zlib/t/100generic-rawdeflate.t')
-rw-r--r--ext/IO_Compress_Zlib/t/100generic-rawdeflate.t21
1 files changed, 21 insertions, 0 deletions
diff --git a/ext/IO_Compress_Zlib/t/100generic-rawdeflate.t b/ext/IO_Compress_Zlib/t/100generic-rawdeflate.t
new file mode 100644
index 0000000000..b5a43697bd
--- /dev/null
+++ b/ext/IO_Compress_Zlib/t/100generic-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 "generic.pl" ;
+run();