/** * @group redis-hashes */ public function testHashMultipleGet() { $expected = array('hello' => 'world', 'red' => 'blue', 'herp' => 'derp'); $this->client->hmset('foo', $expected); $this->assertEquals(array('world', 'blue'), $this->client->hmget('foo', array('hello', 'red'))); }