mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-12 03:21:33 +00:00
12 lines
209 B
Python
12 lines
209 B
Python
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)
|