diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-01-17 21:34:12 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2020-01-18 09:56:32 +0100 |
commit | e26e2060f5470ce8bf4c5973284bae07b8af170a (patch) | |
tree | adf8512f93f5559ba87d0c9931969ae4ebea7133 /tests/config | |
parent | cf92b4dd1521241eefc58eaf6dcd202cd83969d8 (diff) | |
download | Shaarli-e26e2060f5470ce8bf4c5973284bae07b8af170a.tar.gz Shaarli-e26e2060f5470ce8bf4c5973284bae07b8af170a.tar.zst Shaarli-e26e2060f5470ce8bf4c5973284bae07b8af170a.zip |
Add and update unit test for the new system (Bookmark + Service)
See #1307
Diffstat (limited to 'tests/config')
-rw-r--r-- | tests/config/ConfigJsonTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/config/ConfigJsonTest.php b/tests/config/ConfigJsonTest.php index 95ad060b..33160eb0 100644 --- a/tests/config/ConfigJsonTest.php +++ b/tests/config/ConfigJsonTest.php | |||
@@ -24,7 +24,7 @@ class ConfigJsonTest extends \PHPUnit\Framework\TestCase | |||
24 | $conf = $this->configIO->read('tests/utils/config/configJson.json.php'); | 24 | $conf = $this->configIO->read('tests/utils/config/configJson.json.php'); |
25 | $this->assertEquals('root', $conf['credentials']['login']); | 25 | $this->assertEquals('root', $conf['credentials']['login']); |
26 | $this->assertEquals('lala', $conf['redirector']['url']); | 26 | $this->assertEquals('lala', $conf['redirector']['url']); |
27 | $this->assertEquals('tests/utils/config/datastore.php', $conf['resource']['datastore']); | 27 | $this->assertEquals('sandbox/datastore.php', $conf['resource']['datastore']); |
28 | $this->assertEquals('1', $conf['plugins']['WALLABAG_VERSION']); | 28 | $this->assertEquals('1', $conf['plugins']['WALLABAG_VERSION']); |
29 | } | 29 | } |
30 | 30 | ||