mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
6 lines
211 B
Python
6 lines
211 B
Python
def test_api_endpoint_shows_basic_info(client):
|
|
from bigchaindb import version
|
|
res = client.get('/')
|
|
assert res.json['software'] == 'BigchainDB'
|
|
assert res.json['version'] == version.__version__
|