diff options
Diffstat (limited to 'cpan/IO-Compress/t/102tied-gzip.t')
-rw-r--r-- | cpan/IO-Compress/t/102tied-gzip.t | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cpan/IO-Compress/t/102tied-gzip.t b/cpan/IO-Compress/t/102tied-gzip.t new file mode 100644 index 0000000000..52a502ecd3 --- /dev/null +++ b/cpan/IO-Compress/t/102tied-gzip.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::Gzip qw($GzipError) ; +use IO::Uncompress::Gunzip qw($GunzipError) ; + +sub identify +{ + 'IO::Compress::Gzip'; +} + +require "tied.pl" ; +run(); |