/**
  * @group disconnected
  */
 public function testSetMultibulkOption()
 {
     $protocol = new ComposableTextProtocol();
     $reader = $protocol->getReader();
     $protocol->setOption('iterable_multibulk', true);
     $this->assertInstanceOf('Predis\\Protocol\\Text\\ResponseMultiBulkStreamHandler', $reader->getHandler('*'));
     $protocol->setOption('iterable_multibulk', false);
     $this->assertInstanceOf('Predis\\Protocol\\Text\\ResponseMultiBulkHandler', $reader->getHandler('*'));
 }