listScripts() public method

Returns an indexed array of scripts currently on the server.
public listScripts ( ) : array
return array Indexed array of scriptnames.
コード例 #1
0
ファイル: ManageSieveTest.php プロジェクト: raz0rsdge/horde
 public function testRemoveScript()
 {
     $this->clear();
     $this->login();
     $scriptname = 'test script1';
     $before_scripts = $this->fixture->listScripts();
     $this->fixture->installScript($scriptname, $this->scripts[$scriptname]);
     $this->fixture->removeScript($scriptname);
     $after_scripts = $this->fixture->listScripts();
     $diff_scripts = array_values(array_diff($after_scripts, $before_scripts));
     $this->assertTrue(count($diff_scripts) == 0, 'Script still installed');
     $this->logout();
 }