Created
April 24, 2018 12:43
-
-
Save amitkot/ddb29b02f1f1512c761e215e8d6731a2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from cex_rebalance import CexRebalance | |
class Exchanges: | |
pass | |
class Fetcher_Interfaces(): | |
pass | |
class TimeControl(): | |
pass | |
def test_initial(): | |
exchanges = Exchanges() | |
fetcher = Fetcher_Interfaces() | |
timecontrol = TimeControl() | |
c = CexRebalance(exchanges=exchanges, | |
fetcher=fetcher, | |
timecontrol=timecontrol, | |
settings=Settings()) | |
assert c is not None |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment