BLD: all exchange operations now implemented an unit tested with CCXT

This commit is contained in:
fredfortier
2017-11-30 22:45:52 -05:00
parent 7bbb6e0b42
commit b762689225
4 changed files with 92 additions and 59 deletions
+3 -3
View File
@@ -45,14 +45,14 @@ class TestCCXT(BaseExchangeTestCase):
def test_get_order(self):
log.info('retrieving order')
order = self.exchange.get_order(
u'2c584020-9caf-4af5-bde0-332c0bba17e2')
order = self.exchange.get_order('2631386', 'neo_eth')
# order = self.exchange.get_order('2631386')
assert isinstance(order, Order)
pass
def test_cancel_order(self, ):
log.info('cancel order')
self.exchange.cancel_order(u'dc7bcca2-5219-4145-8848-8a593d2a72f9')
self.exchange.cancel_order('2631386', 'neo_eth')
pass
def test_get_candles(self):