add more tests

This commit is contained in:
2026-03-02 18:19:00 +01:00
parent 49ab62bb2c
commit 4338070e2d
2 changed files with 136 additions and 14 deletions

View File

@@ -219,20 +219,6 @@ class Wallabag(object):
ext=self.format)
return await self.query(url, "get", **params)
async def reaload_entry(self, entry):
"""
PATCH /api/entries/{entry}/reload.{_format}
Reload a single entry
:param entry: \w+ an integer The Entry ID
:return data related to the ext
"""
params = {'access_token': self.token}
url = '/api/entries/{entry}/reload.{ext}'.format(entry=entry,
ext=self.format)
return await self.query(url, "patch", **params)
async def patch_entries(self, entry, **kwargs):
"""
PATCH /api/entries/{entry}.{_format}