summaryrefslogtreecommitdiffstats
path: root/tests/Integration/Fixtures/data
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Integration/Fixtures/data')
-rw-r--r--tests/Integration/Fixtures/data/default.php14
-rw-r--r--tests/Integration/Fixtures/data/readitem.php12
2 files changed, 13 insertions, 13 deletions
diff --git a/tests/Integration/Fixtures/data/default.php b/tests/Integration/Fixtures/data/default.php
index d87bb1e6f..862515b12 100644
--- a/tests/Integration/Fixtures/data/default.php
+++ b/tests/Integration/Fixtures/data/default.php
@@ -20,12 +20,12 @@ return [
'articlesPerUpdate' => 1,
'items' => [
['title' => 'a title1', 'guid' => 'abc'],
- ['title' => 'a title2', 'status' => 4, 'guid' => 'def'],
- ['title' => 'a title3', 'status' => 6, 'guid' => 'gih'],
- ['title' => 'del1', 'status' => 0],
- ['title' => 'del2', 'status' => 0],
- ['title' => 'del3', 'status' => 0],
- ['title' => 'del4', 'status' => 0]
+ ['title' => 'a title2', 'unread' => false, 'starred' => true, 'guid' => 'def'],
+ ['title' => 'a title3', 'unread' => true, 'starred' => true, 'guid' => 'gih'],
+ ['title' => 'del1', 'unread' => false, 'starred' => false],
+ ['title' => 'del2', 'unread' => false, 'starred' => false],
+ ['title' => 'del3', 'unread' => false, 'starred' => false],
+ ['title' => 'del4', 'unread' => false, 'starred' => false]
]
],
[
@@ -69,7 +69,7 @@ return [
'title' => 'fourth feed',
'url' => 'http://blog.fefe.de',
'items' => [
- ['title' => 'no folder', 'status' => 0]
+ ['title' => 'no folder', 'unread' => false, 'starred' => false]
]
]
]
diff --git a/tests/Integration/Fixtures/data/readitem.php b/tests/Integration/Fixtures/data/readitem.php
index 0a587bad7..8f953a845 100644
--- a/tests/Integration/Fixtures/data/readitem.php
+++ b/tests/Integration/Fixtures/data/readitem.php
@@ -15,18 +15,18 @@ return [
'title' => 'john feed',
'userId' => 'john',
'items' => [
- ['title' => 'blubb', 'status' => 2],
- ['title' => 'blubb', 'status' => 2]
+ ['title' => 'blubb', 'unread' => true, 'starred' => false],
+ ['title' => 'blubb', 'unread' => true, 'starred' => false]
]
],
[
'title' => 'test feed',
'userId' => 'test',
'items' => [
- ['title' => 'blubb', 'status' => 2],
- ['title' => 'blubbs', 'status' => 2],
- ['title' => 'blubb', 'status' => 2],
- ['title' => 'blubb', 'status' => 2]
+ ['title' => 'blubb', 'unread' => true, 'starred' => false],
+ ['title' => 'blubbs', 'unread' => true, 'starred' => false],
+ ['title' => 'blubb', 'unread' => true, 'starred' => false],
+ ['title' => 'blubb', 'unread' => true, 'starred' => false]
]
]
]