Exemplo n.º 1
0
 /** @test */
 public function itShouldFetchStoredItems()
 {
     $this->newClient()->write('item.exists', 'exists', time() + 2000);
     parent::itShouldFetchStoredItems();
 }
Exemplo n.º 2
0
 /** @test */
 public function itShouldFetchStoredItems()
 {
     list(, $mc) = $this->getClient();
     $mc->method('get')->with('item.exists')->willReturn('exists');
     return parent::itShouldFetchStoredItems();
 }