diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-07-24 00:48:43 -0700 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-07-24 00:48:43 -0700 |
commit | 2622839fcfb360eafc6d670885ca265ebed1433c (patch) | |
tree | 6ff684504f1ca84b39cb2bc97a72562b514924c0 /tests | |
parent | 54263624ea9ca6e6211c2aa72ba7dd2015189476 (diff) | |
parent | 485e8ab0a5502bacdac2a9d4e71c2b548aa8c552 (diff) | |
download | nextcloud-server-2622839fcfb360eafc6d670885ca265ebed1433c.tar.gz nextcloud-server-2622839fcfb360eafc6d670885ca265ebed1433c.zip |
Merge pull request #4171 from owncloud/fix-config
Fix config
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/config.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/lib/config.php b/tests/lib/config.php index 1a1d062d688..c67a66c832e 100644 --- a/tests/lib/config.php +++ b/tests/lib/config.php @@ -80,17 +80,6 @@ class Test_Config extends PHPUnit_Framework_TestCase { */ public function testWriteData() { $config = new OC\Config('/non-writable'); - // TODO never get's called, because the previous call throws the exception - // maybe include some more logic to create a readable dir and then try to - // write to this dir - // - // console commands: - // $ sudo touch /non-writableconfig.php - // $ sudo chmod go-rwx /non-writableconfig.php - // ---- call the tests now -> above statemant throws the exception - // - // $ sudo chmod go+r /non-writableconfig.php - // ---- call the tests now -> bellow statemant throws the exception $config->setValue('foo', 'bar'); } } |