mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
14 lines
322 B
Python
14 lines
322 B
Python
import copy
|
|
|
|
|
|
def test_settings(monkeypatch):
|
|
import bigchaindb
|
|
from bigchaindb.web import server
|
|
|
|
s = server.create_server(bigchaindb.config['server'])
|
|
|
|
# for whatever reason the value is wrapped in a list
|
|
# needs further investigation
|
|
assert s.cfg.bind[0] == bigchaindb.config['server']['bind']
|
|
|