/**
  * testDeleteDirectoryNodes
  */
 public function testDeleteDirectoryNodes()
 {
     $dirpaths = $this->testCreateDirectoryNodesInShared();
     $result = $this->_json->deleteNodes($dirpaths);
     // check if node is deleted
     $this->setExpectedException('Tinebase_Exception_NotFound');
     $node = $this->_fsController->stat(Filemanager_Controller_Node::getInstance()->addBasePath($dirpaths[0]));
 }