1
0
mirror of https://github.com/bspeice/metrik synced 2024-09-27 13:11:37 -04:00
metrik/test/tasks/test_nasdaq.py
Bradlee Speice 495a491096 Reduce the NASDAQ test threshold
Not sure why it dropped, but is corroborated by the NASDAQ site
2016-08-23 16:56:46 -04:00

17 lines
521 B
Python

from unittest import TestCase
from metrik.tasks.nasdaq import NasdaqCompanyList, NasdaqETFList
class NasdaqTest(TestCase):
def test_company_list(self):
companies = NasdaqCompanyList.retrieve_data()['companies']
assert len(companies) > 4000
# TODO: Get lists of companies from ETF holdings and verify that they
# can be found here as well - this should be a superset
def test_etf_list(self):
etfs = NasdaqETFList.retrieve_data()['etfs']
assert len(etfs) > 1500