summaryrefslogtreecommitdiffstats
path: root/tests/unit/config/AppConfigTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/config/AppConfigTest.php')
-rw-r--r--tests/unit/config/AppConfigTest.php15
1 files changed, 14 insertions, 1 deletions
diff --git a/tests/unit/config/AppConfigTest.php b/tests/unit/config/AppConfigTest.php
index 7ee533e8b..8f91dd338 100644
--- a/tests/unit/config/AppConfigTest.php
+++ b/tests/unit/config/AppConfigTest.php
@@ -42,7 +42,7 @@ class AppConfigTest extends \PHPUnit_Framework_TestCase {
$installedExtensions = array(
'curl' => '4.3'
);
- $databaseType = 'postgresql';
+ $databaseType = 'oracle';
$this->config = new AppConfig($this->nav, $this->l10n,
$this->url, $phpVersion, $ownCloudVersion, $installedApps,
@@ -228,4 +228,17 @@ class AppConfigTest extends \PHPUnit_Framework_TestCase {
));
$this->config->testDependencies();
}
+
+
+ /**
+ * @expectedException \OCA\News\Config\DependencyException
+ */
+ public function testSupportedDb() {
+ $this->config->loadConfig(array(
+ 'databases' => array(
+ 'pgsql', 'sqlite'
+ )
+ ));
+ $this->config->testDependencies();
+ }
} \ No newline at end of file