Example #1
0
 public function testDestroyMethod()
 {
     $memcache = $this->getMock('Memcached', ['delete']);
     $memcache->expects($this->once())->method('delete')->with($this->equalTo('foo'));
     $m = new \Cygnite\Cache\Storage\Memcached($memcache);
     $m->destroy('foo');
 }