diff options
Diffstat (limited to 'tests/utils/config')
-rw-r--r-- | tests/utils/config/configInvalid.json.php | 4 | ||||
-rw-r--r-- | tests/utils/config/configJson.json.php | 19 | ||||
-rw-r--r-- | tests/utils/config/configUpdateDone.json.php | 4 |
3 files changed, 27 insertions, 0 deletions
diff --git a/tests/utils/config/configInvalid.json.php b/tests/utils/config/configInvalid.json.php new file mode 100644 index 00000000..c53e471d --- /dev/null +++ b/tests/utils/config/configInvalid.json.php | |||
@@ -0,0 +1,4 @@ | |||
1 | <?php /* | ||
2 | { | ||
3 | bad: bad, | ||
4 | } | ||
diff --git a/tests/utils/config/configJson.json.php b/tests/utils/config/configJson.json.php new file mode 100644 index 00000000..71b59edd --- /dev/null +++ b/tests/utils/config/configJson.json.php | |||
@@ -0,0 +1,19 @@ | |||
1 | <?php /* | ||
2 | { | ||
3 | "redirector":"lala", | ||
4 | "login":"root", | ||
5 | "hash":"hash", | ||
6 | "salt":"salt", | ||
7 | "timezone":"Europe\/Paris", | ||
8 | "disablesessionprotection":false, | ||
9 | "privateLinkByDefault":true, | ||
10 | "title": "Shaarli", | ||
11 | "titleLink": "?", | ||
12 | "config": { | ||
13 | "foo": "bar", | ||
14 | "DATASTORE": "data\/datastore.php" | ||
15 | }, | ||
16 | "plugins": { | ||
17 | "WALLABAG_VERSION": 1 | ||
18 | } | ||
19 | } | ||
diff --git a/tests/utils/config/configUpdateDone.json.php b/tests/utils/config/configUpdateDone.json.php new file mode 100644 index 00000000..a4e460d1 --- /dev/null +++ b/tests/utils/config/configUpdateDone.json.php | |||
@@ -0,0 +1,4 @@ | |||
1 | <?php /* | ||
2 | { | ||
3 | "login": "root" | ||
4 | } | ||