mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-04-20 19:38:39 +00:00
11 lines
196 B
Python
11 lines
196 B
Python
from api_lib import APITest
|
|
|
|
|
|
class VersionAPITest(APITest):
|
|
"""
|
|
GET /version
|
|
"""
|
|
|
|
def check(self):
|
|
self.check_equal(self.get("/api/version").json(), {'Version': '0.9.6'})
|