aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/api/controllers/tags
Commit message (Collapse)AuthorAgeFilesLines
* Add mutex on datastore I/O operationsArthurHoaro2020-10-134-6/+17
| | | | | | To make sure that there is no concurrent operation on the datastore file. Fixes #1132
* Compatibility with PHPUnit 9ArthurHoaro2020-09-294-4/+4
|
* Convert legacy PHPUnit @expected* to new ->expect*ArthurHoaro2020-09-273-12/+12
| | | | Converted automatically using https://github.com/ArthurHoaro/convert-legacy-phpunit-expect
* Comply with PHPUnit V8: setup/teardown functions must return voidArthurHoaro2020-09-264-8/+8
|
* Add and update unit test for the new system (Bookmark + Service)ArthurHoaro2020-01-184-36/+49
| | | | See #1307
* Optimize and cleanup importsVirtualTam2019-01-134-25/+28
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* namespacing: \Shaarli\Bookmark\LinkDBVirtualTam2019-01-124-9/+9
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* namespacing: \Shaarli\HistoryVirtualTam2019-01-122-9/+9
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* lint: apply phpcbf to tests/VirtualTam2018-12-021-1/+0
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* GetTagsTest - Update to alpha sort for equal occurencesArthurHoaro2018-07-053-8/+8
|
* Implements Tags endpoints for Shaarli's REST APIArthurHoaro2018-06-044-0/+711
Endpoints: * List All Tags [GET] * Get a tag [GET] * Update a tag [PUT] * Delete a tag [DELETE] Fixes #904 References shaarli/api-documentation#34