예제 #1
0
파일: PredisTest.php 프로젝트: gmo/cache
 /**
  * @group redis-hashes
  */
 public function testHashMultipleSet()
 {
     $expected = array('hello' => 'world', 'red' => 'blue');
     $this->assertEquals('OK', $this->client->hmset('foo', $expected));
     $this->assertEquals($expected, $this->client->hgetall('foo'));
 }