php5-apc retained as dummy package.
[php5-apc.git] / tests / apc_002.phpt
diff --git a/tests/apc_002.phpt b/tests/apc_002.phpt
deleted file mode 100644 (file)
index 8f22162..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
---TEST--
-APC: apc_store/fetch with objects
---SKIPIF--
-<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
---INI--
-apc.enabled=1
-apc.enable_cli=1
-apc.file_update_protection=0
---FILE--
-<?php
-
-class foo { }
-$foo = new foo;
-var_dump($foo);
-apc_store('foo',$foo);
-unset($foo);
-$bar = apc_fetch('foo');
-var_dump($bar);
-$bar->a = true;
-var_dump($bar);
-
-?>
-===DONE===
-<?php exit(0); ?>
---EXPECTF--
-object(foo)#%d (0) {
-}
-object(foo)#%d (0) {
-}
-object(foo)#%d (1) {
-  ["a"]=>
-  bool(true)
-}
-===DONE===