mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-12 03:21:33 +00:00
15 lines
242 B
Python
15 lines
242 B
Python
from api_lib import APITest
|
|
|
|
|
|
class DbAPITestCleanup(APITest):
|
|
"""
|
|
POST /db/cleanup
|
|
"""
|
|
|
|
def check(self):
|
|
resp = self.post_task(
|
|
"/api/db/cleanup"
|
|
)
|
|
|
|
self.check_equal(resp.status_code, 200)
|