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:
authorJoas Schilling <coding@schilljs.com>2016-09-19 20:43:47 +0300
committerJoas Schilling <coding@schilljs.com>2016-10-21 10:09:23 +0300
commit0b1fb180a53fc4e533e2f194977293bc509c5df3 (patch)
treed28abeb617a3eaf2bee8d97bd284fab126d4cd3f /tests/lib/AppTest.php
parent50b6ee67cb025332f1ec7012d3705150ef5a165a (diff)
Make AppConfig part of the public API
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/lib/AppTest.php')
-rw-r--r--tests/lib/AppTest.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/lib/AppTest.php b/tests/lib/AppTest.php
index ea4f328b63a..b7263adb78b 100644
--- a/tests/lib/AppTest.php
+++ b/tests/lib/AppTest.php
@@ -317,6 +317,7 @@ class AppTest extends \Test\TestCase {
'appforgroup12',
'dav',
'federatedfilesharing',
+ 'provisioning_api',
'twofactor_backupcodes',
'workflowengine',
),
@@ -333,6 +334,7 @@ class AppTest extends \Test\TestCase {
'appforgroup2',
'dav',
'federatedfilesharing',
+ 'provisioning_api',
'twofactor_backupcodes',
'workflowengine',
),
@@ -350,6 +352,7 @@ class AppTest extends \Test\TestCase {
'appforgroup2',
'dav',
'federatedfilesharing',
+ 'provisioning_api',
'twofactor_backupcodes',
'workflowengine',
),
@@ -367,6 +370,7 @@ class AppTest extends \Test\TestCase {
'appforgroup2',
'dav',
'federatedfilesharing',
+ 'provisioning_api',
'twofactor_backupcodes',
'workflowengine',
),
@@ -384,6 +388,7 @@ class AppTest extends \Test\TestCase {
'appforgroup2',
'dav',
'federatedfilesharing',
+ 'provisioning_api',
'twofactor_backupcodes',
'workflowengine',
),
@@ -463,11 +468,11 @@ class AppTest extends \Test\TestCase {
);
$apps = \OC_App::getEnabledApps();
- $this->assertEquals(array('files', 'app3', 'dav', 'federatedfilesharing', 'twofactor_backupcodes', 'workflowengine'), $apps);
+ $this->assertEquals(array('files', 'app3', 'dav', 'federatedfilesharing', 'provisioning_api', 'twofactor_backupcodes', 'workflowengine'), $apps);
// mock should not be called again here
$apps = \OC_App::getEnabledApps();
- $this->assertEquals(array('files', 'app3', 'dav', 'federatedfilesharing', 'twofactor_backupcodes', 'workflowengine'), $apps);
+ $this->assertEquals(array('files', 'app3', 'dav', 'federatedfilesharing', 'provisioning_api', 'twofactor_backupcodes', 'workflowengine'), $apps);
$this->restoreAppConfig();
\OC_User::setUserId(null);