From fddaa17afb2428314278995182cd2693f2eb5418 Mon Sep 17 00:00:00 2001 From: pookey <pookey@625475ce-881a-0410-a577-b389adb331d8> Date: Tue, 12 Jun 2007 16:51:20 +0000 Subject: [PATCH] Adding conditional class definition so that people who use the 'memcache' pecl module can run the tests. --- tests/Cache/MemcacheTestCase.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/Cache/MemcacheTestCase.php b/tests/Cache/MemcacheTestCase.php index dbc7b80fc..243db826e 100644 --- a/tests/Cache/MemcacheTestCase.php +++ b/tests/Cache/MemcacheTestCase.php @@ -41,7 +41,11 @@ class Doctrine_Cache_Memcache_TestCase extends Doctrine_UnitTestCase class Doctrine_Cache_Memcache_Mock extends Doctrine_Cache_Memcache { } -class Memcache -{ +if (!class_exists('Memcache')) +{ + class Memcache + { + + } }