Lines Matching full:raw
23 use_ok('Compress::Raw::Zlib', 2) ;
50 my $zv = Compress::Raw::Zlib::zlibng_version();
52 ok ! Compress::Raw::Zlib::is_zlib_native(), "! is_zlib_native";
53 ok Compress::Raw::Zlib::is_zlibng(), "is_zlibng";
54 ok Compress::Raw::Zlib::is_zlibng_native(), "is_zlibng_native";
55 ok ! Compress::Raw::Zlib::is_zlibng_compat(), "! is_zlibng_compat";
56 is Compress::Raw::Zlib::zlib_version(), '', "zlib_version() should be empty";
57 is Compress::Raw::Zlib::ZLIB_VERSION, '', "ZLIB_VERSION should be empty";
78 my $zv = Compress::Raw::Zlib::zlibng_version();
83 ok ! Compress::Raw::Zlib::is_zlib_native(), "! is_zlib_native";
84 ok Compress::Raw::Zlib::is_zlibng(), "is_zlibng";
85 ok ! Compress::Raw::Zlib::is_zlibng_native(), "! is_zlibng_native";
86 ok Compress::Raw::Zlib::is_zlibng_compat(), "is_zlibng_compat";
87 is Compress::Raw::Zlib::zlib_version(), $compat_ver, "zlib_version() should be $compat_ver";
88 is Compress::Raw::Zlib::ZLIB_VERSION, $compat_ver, "ZLIB_VERSION should be $compat_ver";
93 my $zv = Compress::Raw::Zlib::zlib_version();
95 ok Compress::Raw::Zlib::is_zlib_native(), "is_zlib_native";
96 ok ! Compress::Raw::Zlib::is_zlibng(), "! is_zlibng";
97 ok ! Compress::Raw::Zlib::is_zlibng_native(), "! is_zlibng_native";
98 ok ! Compress::Raw::Zlib::is_zlibng_compat(), "! is_zlibng_compat";
99 is Compress::Raw::Zlib::zlibng_version(), '', "zlibng_version() should be empty";
100 is Compress::Raw::Zlib::ZLIBNG_VERSION, '', "ZLIBNG_VERSION should be empty"; }