Esempio n. 1
0
 /**
  * Tests Ftp::setUp
  *
  * @expectedException \phpbu\App\Backup\Sync\Exception
  * @expectedExceptionMessage absolute path is not allowed
  */
 public function testSetUpPathWithRootSlash()
 {
     $ftp = new Ftp();
     $ftp->setup(array('host' => 'example.com', 'user' => 'user.name', 'password' => 'password', 'path' => '/foo'));
 }