mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-06-15 07:00:52 +00:00
12 lines
226 B
Python
12 lines
226 B
Python
from api_lib import APITest
|
|
import os
|
|
|
|
|
|
class VersionAPITest(APITest):
|
|
"""
|
|
GET /version
|
|
"""
|
|
|
|
def check(self):
|
|
self.check_equal(self.get("/api/version").json(), {'Version': os.environ['APTLY_VERSION']})
|