bigchaindb/tests/web/test_server.py

10 lines
296 B
Python
Raw Normal View History

2016-11-15 11:40:41 +01:00
def test_settings():
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']