From 'develop' of https://github.com/freqtrade/freqtrade into nullart/maindev

This commit is contained in:
Nullart
2018-07-10 13:18:09 +08:00
93 changed files with 19015 additions and 13 deletions

14
freqtrade/tests/test_state.py Executable file
View File

@@ -0,0 +1,14 @@
"""
Unit test file for constants.py
"""
from freqtrade.state import State
def test_state_object() -> None:
"""
Test the State object has the mandatory states
:return: None
"""
assert hasattr(State, 'RUNNING')
assert hasattr(State, 'STOPPED')