storage: add tests

This commit is contained in:
André Roth
2024-10-02 19:12:05 +02:00
parent fca153cc8b
commit c25693b009

11
system/t12_api/storage.py Normal file
View File

@@ -0,0 +1,11 @@
from api_lib import APITest
class TaskAPITestSwaggerDocs(APITest):
"""
GET /docs
"""
def check(self):
resp = self.get("/api/storage")
self.check_equal(resp.status_code, 200)