1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 21:22:40 +00:00

Test for hot links

This commit is contained in:
J. King 2019-04-08 19:21:21 -04:00
parent e8f4732b1f
commit 98fc3f4940
2 changed files with 9 additions and 1 deletions

View file

@ -136,7 +136,7 @@ class API extends \JKingWeb\Arsse\REST\AbstractHandler {
}
if ($G['links']) {
// TODO: implement hot links
$out['inks'] = [];
$out['links'] = [];
}
if ($G['unread_item_ids']) {
$out['unread_item_ids'] = $this->getItemIds((new Context)->unread(true));

View file

@ -366,4 +366,12 @@ class TestAPI extends \JKingWeb\Arsse\Test\AbstractTest {
]);
$this->assertMessage($exp, $this->req("api&unread_item_ids"));
}
public function testListHotLinks() {
// hot links are not actually implemented, so an empty array should be all we get
$exp = new JsonResponse([
'links' => []
]);
$this->assertMessage($exp, $this->req("api&links"));
}
}