BLD: tested all public APIs with CCXT

This commit is contained in:
fredfortier
2017-11-30 17:08:13 -05:00
parent fc2c44a6b7
commit 5660247da2
6 changed files with 156 additions and 44 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ log = Logger('test_ccxt')
class TestCCXT(BaseExchangeTestCase):
@classmethod
def setup(self):
exchange_name = 'poloniex'
exchange_name = 'binance'
auth = get_exchange_auth(exchange_name)
self.exchange = CCXT(
exchange_name=exchange_name,
@@ -97,7 +97,7 @@ class TestCCXT(BaseExchangeTestCase):
def test_orderbook(self):
log.info('testing order book for bittrex')
asset = self.exchange.get_asset('eth_btc')
orderbook = self.exchange.get_orderbook(asset)
orderbook = self.exchange.get_orderbook(asset, 'all', limit=10)
pass
def test_get_fees(self):