summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@owncloud.org>2013-12-03 11:00:49 -0800
committerFrank Karlitschek <frank@owncloud.org>2013-12-03 11:00:49 -0800
commit8fdbb988995099fc2bd79ca5704120873952651b (patch)
tree92921e53cb398a25c02ec5c0a625d95d9fe85d96 /lib
parent16eb7c15d26054055f5e8d34fd8333948b6fd8ff (diff)
parent6cf9844e9c4790342053e00e4dfaf389275e4c79 (diff)
downloadnextcloud-server-8fdbb988995099fc2bd79ca5704120873952651b.tar.gz
nextcloud-server-8fdbb988995099fc2bd79ca5704120873952651b.zip
Merge pull request #6168 from owncloud/extstorage-testtestmethod
Added unit test for the test() method of ext storage
Diffstat (limited to 'lib')
-rw-r--r--lib/private/files/storage/wrapper/wrapper.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/private/files/storage/wrapper/wrapper.php b/lib/private/files/storage/wrapper/wrapper.php
index 0336c27efa1..f9adda80314 100644
--- a/lib/private/files/storage/wrapper/wrapper.php
+++ b/lib/private/files/storage/wrapper/wrapper.php
@@ -424,4 +424,12 @@ class Wrapper implements \OC\Files\Storage\Storage {
public function getETag($path) {
return $this->storage->getETag($path);
}
+
+ /**
+ * Returns true
+ * @return true
+ */
+ public function test() {
+ return $this->storage->test();
+ }
}