diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2012-10-27 11:22:00 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2012-10-27 11:43:24 +0200 |
commit | 74665faec533430be37879bfc0ef24aa7f211f6e (patch) | |
tree | dcc15f1d0e785616b237e0bbc71040ac511b994e /tests | |
parent | 22dcd3b6a691c7a245e4d1de30f09bb17efdfceb (diff) | |
download | nextcloud-server-74665faec533430be37879bfc0ef24aa7f211f6e.tar.gz nextcloud-server-74665faec533430be37879bfc0ef24aa7f211f6e.zip |
exeuting tests now on apps as well - the apps repo shall be cloned into the sub folder apps2
Diffstat (limited to 'tests')
-rw-r--r-- | tests/enable_all.php | 20 | ||||
-rw-r--r-- | tests/preseed-config.php | 19 |
2 files changed, 39 insertions, 0 deletions
diff --git a/tests/enable_all.php b/tests/enable_all.php new file mode 100644 index 00000000000..02e35518d64 --- /dev/null +++ b/tests/enable_all.php @@ -0,0 +1,20 @@ +<?php +/** + * Copyright (c) 2012 Thomas Müller <thomas.mueller@tmit.eu> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +require_once __DIR__.'/../lib/base.php'; + +OC_App::enable('calendar'); +OC_App::enable('contacts'); +OC_App::enable('files_archive'); +OC_App::enable('mozilla_sync'); +OC_App::enable('news'); +OC_App::enable('provisioning_api'); +OC_App::enable('user_external'); +OC_App::enable('provisioning_api'); +OC_App::enable('provisioning_api'); + diff --git a/tests/preseed-config.php b/tests/preseed-config.php new file mode 100644 index 00000000000..fbf60ad2e28 --- /dev/null +++ b/tests/preseed-config.php @@ -0,0 +1,19 @@ +<?php +$CONFIG = array ( + "appstoreenabled" => false, + 'apps_paths' => + array ( + 0 => + array ( + 'path' => '/home/thomas/Development/owncloud/core/apps', + 'url' => '/apps', + 'writable' => false, + ), + 1 => + array ( + 'path' => '/home/thomas/Development/owncloud/core/apps2', + 'url' => '/apps2', + 'writable' => false, + ) + ), +); |