mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-11 02:33:55 +00:00
29 lines
717 B
Python
29 lines
717 B
Python
"""
|
|
Unit test file for constants.py
|
|
"""
|
|
|
|
from freqtrade.constants import Constants
|
|
|
|
|
|
def test_constant_object() -> None:
|
|
"""
|
|
Test the Constants object has the mandatory Constants
|
|
:return: None
|
|
"""
|
|
constant = Constants()
|
|
assert hasattr(constant, 'CONF_SCHEMA')
|
|
assert hasattr(constant, 'DYNAMIC_WHITELIST')
|
|
assert hasattr(constant, 'PROCESS_THROTTLE_SECS')
|
|
assert hasattr(constant, 'TICKER_INTERVAL')
|
|
assert hasattr(constant, 'HYPEROPT_EPOCH')
|
|
assert hasattr(constant, 'RETRY_TIMEOUT')
|
|
|
|
|
|
def test_conf_schema() -> None:
|
|
"""
|
|
Test the CONF_SCHEMA is from the right type
|
|
:return:
|
|
"""
|
|
constant = Constants()
|
|
assert isinstance(constant.CONF_SCHEMA, dict)
|