]> source.dussan.org Git - nextcloud-server.git/commitdiff
move storage wrapper test to new namespace
authorRobin Appelman <icewind@owncloud.com>
Tue, 2 Jul 2013 15:58:21 +0000 (17:58 +0200)
committerRobin Appelman <icewind@owncloud.com>
Wed, 24 Jul 2013 22:31:51 +0000 (00:31 +0200)
tests/lib/files/storage/wrapper.php [deleted file]
tests/lib/files/storage/wrapper/wrapper.php [new file with mode: 0644]

diff --git a/tests/lib/files/storage/wrapper.php b/tests/lib/files/storage/wrapper.php
deleted file mode 100644 (file)
index 2794a0a..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-/**
- * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
-
-namespace Test\Files\Storage;
-
-class Wrapper extends Storage {
-       /**
-        * @var string tmpDir
-        */
-       private $tmpDir;
-
-       public function setUp() {
-               $this->tmpDir = \OC_Helper::tmpFolder();
-               $storage = new \OC\Files\Storage\Local(array('datadir' => $this->tmpDir));
-               $this->instance = new \OC\Files\Storage\Wrapper\Wrapper(array('storage' => $storage));
-       }
-
-       public function tearDown() {
-               \OC_Helper::rmdirr($this->tmpDir);
-       }
-}
diff --git a/tests/lib/files/storage/wrapper/wrapper.php b/tests/lib/files/storage/wrapper/wrapper.php
new file mode 100644 (file)
index 0000000..e31abfc
--- /dev/null
@@ -0,0 +1,26 @@
+<?php
+/**
+ * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+namespace Test\Files\Storage\Wrapper;
+
+class Wrapper extends \Test\Files\Storage\Storage {
+       /**
+        * @var string tmpDir
+        */
+       private $tmpDir;
+
+       public function setUp() {
+               $this->tmpDir = \OC_Helper::tmpFolder();
+               $storage = new \OC\Files\Storage\Local(array('datadir' => $this->tmpDir));
+               $this->instance = new \OC\Files\Storage\Wrapper\Wrapper(array('storage' => $storage));
+       }
+
+       public function tearDown() {
+               \OC_Helper::rmdirr($this->tmpDir);
+       }
+}