summaryrefslogtreecommitdiffstats
path: root/tests/Integration/Fixtures/data/readitem.php
blob: 0a587bad7c33664c5d536fdd06d059926c77b073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/**
 * Nextcloud - News
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Bernhard Posselt <dev@bernhard-posselt.com>
 * @copyright Bernhard Posselt 2015
 */

return [
    'feeds' => [
        [
            'title' => 'john feed',
            'userId' => 'john',
            'items' => [
                ['title' => 'blubb', 'status' => 2],
                ['title' => 'blubb', 'status' => 2]
            ]
        ],
        [
            'title' => 'test feed',
            'userId' => 'test',
            'items' => [
                ['title' => 'blubb', 'status' => 2],
                ['title' => 'blubbs', 'status' => 2],
                ['title' => 'blubb', 'status' => 2],
                ['title' => 'blubb', 'status' => 2]
            ]
        ]
    ]
];