Exemplo n.º 1
0
 /**
  * @group disconnected
  * @expectedException Predis\NotSupportedException
  * @expectedExceptionMessage Cannot send 'PING' commands to a cluster of connections
  */
 public function testThrowsExceptionOnNonShardableCommand()
 {
     $ping = ServerProfile::getDefault()->createCommand('ping');
     $cluster = new PredisCluster();
     $cluster->add($this->getMockConnection());
     $cluster->getConnection($ping);
 }