Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-09-25 17:00:36 +0300
committerMorris Jobke <hey@morrisjobke.de>2015-09-28 11:47:49 +0300
commitb50d1aae5647795781d4965e52a6154c53e87860 (patch)
tree71dfa10271f430c78ca26314ba3c9d3b8bac8996 /tests
parent9a010cc8ce281650038cd1444f63a02245eea523 (diff)
rename config test to prevent autoloader issue
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/configtests.php (renamed from tests/lib/config.php)6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/lib/config.php b/tests/lib/configtests.php
index 91154579ab5..0269ae542f4 100644
--- a/tests/lib/config.php
+++ b/tests/lib/configtests.php
@@ -6,7 +6,9 @@
* See the COPYING-README file.
*/
-class Test_Config extends \Test\TestCase {
+namespace Test;
+
+class ConfigTests extends TestCase {
const TESTCONTENT = '<?php $CONFIG=array("foo"=>"bar", "beers" => array("Appenzeller", "Guinness", "Kölsch"), "alcohol_free" => false);';
/** @var array */
@@ -24,7 +26,7 @@ class Test_Config extends \Test\TestCase {
$this->randomTmpDir = \OC_Helper::tmpFolder();
$this->configFile = $this->randomTmpDir.'testconfig.php';
file_put_contents($this->configFile, self::TESTCONTENT);
- $this->config = new OC\Config($this->randomTmpDir, 'testconfig.php');
+ $this->config = new \OC\Config($this->randomTmpDir, 'testconfig.php');
}
protected function tearDown() {