/**
  * @group disconnected
  */
 public function testConstructorWithoutOptions()
 {
     $client = new Client();
     $pipeline = new PipelineContext($client);
     $this->assertSame($client, $pipeline->getClient());
     $this->assertInstanceOf('Predis\\Pipeline\\StandardExecutor', $pipeline->getExecutor());
 }