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
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-10-27 13:22:00 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2012-10-27 13:43:24 +0400
commit74665faec533430be37879bfc0ef24aa7f211f6e (patch)
treedcc15f1d0e785616b237e0bbc71040ac511b994e /tests/preseed-config.php
parent22dcd3b6a691c7a245e4d1de30f09bb17efdfceb (diff)
exeuting tests now on apps as well - the apps repo shall be cloned into the sub folder apps2
Diffstat (limited to 'tests/preseed-config.php')
-rw-r--r--tests/preseed-config.php19
1 files changed, 19 insertions, 0 deletions
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,
+ )
+ ),
+);