mirror of
https://github.com/php-win-ext/php-memcached.git
synced 2026-03-24 09:02:10 +01:00
20 lines
451 B
PHP
20 lines
451 B
PHP
--TEST--
|
|
Memcached store & fetch type and value correctness using igbinary serializer
|
|
--SKIPIF--
|
|
<?php
|
|
include dirname(__FILE__) . "/skipif.inc";
|
|
if (!Memcached::HAVE_IGBINARY) print "skip igbinary not enabled";
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
include dirname (__FILE__) . '/config.inc';
|
|
include dirname (__FILE__) . '/types.inc';
|
|
|
|
memc_run_test ('memc_types_test',
|
|
memc_create_combinations ('igbinary', Memcached::SERIALIZER_IGBINARY)
|
|
);
|
|
|
|
?>
|
|
--EXPECT--
|
|
TEST DONE
|