Skip to content

Commit

Permalink
storage: add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
neolynx committed Oct 2, 2024
1 parent fca153c commit c25693b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions system/t12_api/storage.py
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit c25693b

Please sign in to comment.