Ejemplo n.º 1
0
 /**
  *
  */
 public function testMultiWordMethodCall()
 {
     $connection = m::mock('mako\\redis\\Connection');
     $connection->shouldReceive('write')->once()->with("*2\r\n\$6\r\nCONFIG\r\n\$7\r\nREWRITE\r\n");
     $connection->shouldReceive('gets')->once()->andReturn("+OK\r\n");
     $redis = new Redis($connection);
     $redis->configRewrite();
 }