diff options
Diffstat (limited to 'tests/enable_all.php')
-rw-r--r-- | tests/enable_all.php | 20 |
1 files changed, 20 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'); + |