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