From c25693b009cfb6a4a6c1a56edb4571d7ddf28148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Roth?= Date: Wed, 2 Oct 2024 19:12:05 +0200 Subject: [PATCH] storage: add tests --- system/t12_api/storage.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 system/t12_api/storage.py diff --git a/system/t12_api/storage.py b/system/t12_api/storage.py new file mode 100644 index 000000000..4f6f3ba03 --- /dev/null +++ b/system/t12_api/storage.py @@ -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)