diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-05 19:48:35 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-05 19:48:35 +0200 |
commit | 45f8d2d3ffd3f4a49391636a66732efab3ad42f6 (patch) | |
tree | 949c25f829ef6dafe51005168011b2f1b9e4f179 /apps | |
parent | 75a77afe6dacc6abd005b8bee046dc7a1135b22c (diff) | |
parent | 0c8ae6eb6632483505c22a8441d916873ed51ecc (diff) | |
download | nextcloud-server-45f8d2d3ffd3f4a49391636a66732efab3ad42f6.tar.gz nextcloud-server-45f8d2d3ffd3f4a49391636a66732efab3ad42f6.zip |
Merge pull request #8456 from owncloud/extstorage-unittestssuite
Added ext storage app in autotest unit test run
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/tests/config.php | 2 | ||||
-rw-r--r-- | apps/files_external/tests/dynamicmountconfig.php | 2 | ||||
-rw-r--r-- | apps/files_external/tests/mountconfig.php | 2 |
3 files changed, 1 insertions, 5 deletions
diff --git a/apps/files_external/tests/config.php b/apps/files_external/tests/config.php index 767c0adf58e..62aff4d1bc1 100644 --- a/apps/files_external/tests/config.php +++ b/apps/files_external/tests/config.php @@ -28,7 +28,7 @@ return array( 'wait'=> 0 ), 'owncloud'=>array( - 'run'=>true, + 'run'=>false, 'host'=>'localhost/owncloud', 'user'=>'test', 'password'=>'test', diff --git a/apps/files_external/tests/dynamicmountconfig.php b/apps/files_external/tests/dynamicmountconfig.php index 81a31e14c60..650299075e6 100644 --- a/apps/files_external/tests/dynamicmountconfig.php +++ b/apps/files_external/tests/dynamicmountconfig.php @@ -22,8 +22,6 @@ require_once __DIR__ . '/../../../lib/base.php'; -require __DIR__ . '/../lib/config.php'; - /** * Class Test_Mount_Config_Dummy_Backend */ diff --git a/apps/files_external/tests/mountconfig.php b/apps/files_external/tests/mountconfig.php index 1921ec76af3..14fe1d90b7a 100644 --- a/apps/files_external/tests/mountconfig.php +++ b/apps/files_external/tests/mountconfig.php @@ -22,8 +22,6 @@ require_once __DIR__ . '/../../../lib/base.php'; -require __DIR__ . '/../lib/config.php'; - class Test_Mount_Config_Dummy_Storage { public function test() { return true; |