Esempio n. 1
0
 /**
  * Tests Tar::getProcess
  *
  * @expectedException \phpbu\App\Exception
  */
 public function testNoTarget()
 {
     $path = realpath(__DIR__ . '/../../../_files/bin');
     $dir = __DIR__;
     $tar = new Tar($path);
     $tar->archiveDirectory($dir);
     $tar->run();
 }