示例#1
0
 public function testRsyncWithExcludeFrom()
 {
     $rsync = new Rsync();
     $rsync->setExcludeFrom('rsync_exclude.txt');
     $expected = "/usr/bin/rsync -La --exclude-from 'rsync_exclude.txt' /origin /target";
     $actual = $rsync->getCommand('/origin', '/target')->getCommand();
     $this->assertEquals($expected, $actual);
 }