mirror of
https://github.com/zhigang1992/graphql-engine.git
synced 2026-05-13 09:56:39 +08:00
14 lines
290 B
Python
14 lines
290 B
Python
#!/usr/bin/env python3
|
|
|
|
import pytest
|
|
|
|
|
|
class TestServerVersion(object):
|
|
|
|
def test_version(self, hge_ctx):
|
|
resp = hge_ctx.http.get(
|
|
hge_ctx.hge_url + '/v1/version'
|
|
)
|
|
my_json = resp.json()
|
|
assert my_json['version'] == hge_ctx.version, my_json
|