0c8ae6eb66
To make sure that the dynamic mount config and config classes from external storages are tested, these are now added into the autotest.sh test run by enabling the app.
24 lines
482 B
PHP
24 lines
482 B
PHP
<?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';
|
|
|
|
function enableApp($app) {
|
|
try {
|
|
OC_App::enable($app);
|
|
} catch (Exception $e) {
|
|
echo $e;
|
|
}
|
|
}
|
|
|
|
enableApp('files_sharing');
|
|
enableApp('files_encryption');
|
|
enableApp('files_external');
|
|
enableApp('user_ldap');
|
|
enableApp('files_versions');
|
|
|