summaryrefslogtreecommitdiff
path: root/cpan/IO-Compress/t/108anyunc-rawdeflate.t
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-10-02 11:11:19 +0100
committerNicholas Clark <nick@ccl4.org>2009-10-02 11:11:19 +0100
commit3fd969f44926f311e1c67d9470a9e936f7af2d73 (patch)
treece6e701f0f80bfd0de9befe7b1bf766e37a6cfbb /cpan/IO-Compress/t/108anyunc-rawdeflate.t
parent70b2007073159a8b94a74b0b9ba406945c45917d (diff)
downloadperl-3fd969f44926f311e1c67d9470a9e936f7af2d73.tar.gz
Move IO::Compress from ext/ to cpan/
Diffstat (limited to 'cpan/IO-Compress/t/108anyunc-rawdeflate.t')
-rw-r--r--cpan/IO-Compress/t/108anyunc-rawdeflate.t29
1 files changed, 29 insertions, 0 deletions
diff --git a/cpan/IO-Compress/t/108anyunc-rawdeflate.t b/cpan/IO-Compress/t/108anyunc-rawdeflate.t
new file mode 100644
index 0000000000..7d85dada9a
--- /dev/null
+++ b/cpan/IO-Compress/t/108anyunc-rawdeflate.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::RawDeflate qw($RawDeflateError) ;
+use IO::Uncompress::RawInflate qw($RawInflateError) ;
+
+sub getClass
+{
+ 'AnyUncompress';
+}
+
+
+sub identify
+{
+ 'IO::Compress::RawDeflate';
+}
+
+require "any.pl" ;
+run();