Example #1
0
 function test_unmarshal()
 {
     $inst = new \Redis\RedisProtocol();
     $expected = array("one", "qwer", "two", "asdf");
     $result = $inst->unmarshal(array("one" => "qwer", "two" => "asdf"));
     $this->assertEquals($expected, $result);
 }