diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-08-15 11:55:54 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-08-15 11:55:54 -0400 |
commit | 137e4cb342c896dd843f418cdc6cd9daf27b3754 (patch) | |
tree | 9cc92d22bfeb220e75d06c9c4be8d74a3e2a2866 /lib/filestorage | |
parent | ddfa760a5eb87f2cb66f82279c8ec14d3373084b (diff) | |
download | nextcloud-server-137e4cb342c896dd843f418cdc6cd9daf27b3754.tar.gz nextcloud-server-137e4cb342c896dd843f418cdc6cd9daf27b3754.zip |
Add tests for Share API, all tests passing :)
Diffstat (limited to 'lib/filestorage')
-rw-r--r-- | lib/filestorage/commontest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/filestorage/commontest.php b/lib/filestorage/commontest.php index 1b01ff856a3..b5126a407b3 100644 --- a/lib/filestorage/commontest.php +++ b/lib/filestorage/commontest.php @@ -51,11 +51,11 @@ class OC_Filestorage_CommonTest extends OC_Filestorage_Common{ public function filetype($path){ return $this->storage->filetype($path); } - public function is_readable($path){ - return $this->storage->is_readable($path); + public function isReadable($path){ + return $this->storage->isReadable($path); } - public function is_writable($path){ - return $this->storage->is_writable($path); + public function isUpdatable($path){ + return $this->storage->isUpdatable($path); } public function file_exists($path){ return $this->storage->file_exists($path); |