Fix unit tests

This commit is contained in:
Robin Appelman 2014-06-20 15:40:38 +02:00
parent 80e6d357a2
commit 24f15fca64
1 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,10 @@ class TestDoubleFileView extends \OC\Files\View{
return $this->updatables[$path];
}
public function isCreatable($path) {
return $this->updatables[$path];
}
public function isDeletable($path) {
return $this->deletables[$path];
}