Testing related adjustments

This commit is contained in:
fredfortier
2017-10-16 03:09:13 -04:00
parent 403f951c77
commit 1732b4a985
12 changed files with 257 additions and 229 deletions
+6
View File
@@ -69,3 +69,9 @@ class BitfinexTestCase(BaseExchangeTestCase):
log.info('testing exchange balances')
balances = self.exchange.get_balances()
pass
def test_orderbook(self):
log.info('testing order book for bitfinex')
asset = self.exchange.get_asset('eth_btc')
orderbook = self.exchange.get_orderbook(asset)
pass
+1 -1
View File
@@ -14,7 +14,7 @@ class ExchangeBundleTestCase:
# start = pd.to_datetime('2017-09-01', utc=True)
start = pd.to_datetime('2017-1-1', utc=True)
end = pd.to_datetime('2017-6-30', utc=True)
end = pd.to_datetime('2017-9-30', utc=True)
exchange_bundle = ExchangeBundle(get_exchange(exchange_name))
+2 -1
View File
@@ -84,7 +84,8 @@ class PoloniexTestCase(BaseExchangeTestCase):
pass
def test_orderbook(self):
log.info('testing order book for bittrex')
log.info('testing order book for poloniex')
asset = self.exchange.get_asset('eth_btc')
orderbook = self.exchange.get_orderbook(asset)
pass