Files
aptly/system/t12_api/version.py
T
2017-07-18 11:45:29 +02:00

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']})