pep8 corrections and changed all object names

This commit is contained in:
Bharat Kalluri
2017-10-09 09:00:37 +05:30
parent e566177e4e
commit 25a05d4aa4
2 changed files with 26 additions and 15 deletions

View File

@@ -79,6 +79,10 @@ class TestTickerPrices(TestCase):
assert len(tickers) > 1
assert all(ticker['assetType'] == 'Stock' for ticker in tickers)
def test_ticker_metadata_for_object(self):
data = self._client.get_ticker_metadata("GOOGL", fmt='object')
assert len(data.name) > 1
# tiingo/news
class TestNews(TestCase):