Пример #1
0
 public function testFormatIsNotSupportedAfterDisablingFormat()
 {
     $this->setExpectedException('Distill\\Exception\\IO\\Input\\FileFormatNotSupportedException');
     $target = $this->getTemporaryPath();
     $this->clearTemporaryPath();
     $this->distill->disableFormat(Format\Zip::getName())->extract($this->filesPath . 'file_ok.zip', $target, new Format\Zip());
 }