1
0
mirror of https://github.com/bspeice/metrik synced 2024-09-27 13:11:37 -04:00
metrik/test/tasks/test_cboe.py
2016-12-06 08:15:51 -05:00

17 lines
453 B
Python

from unittest import TestCase
from metrik.tasks.cboe import CboeOptionableList
class CboeTest(TestCase):
def test_optionable_list(self):
companies = CboeOptionableList.retrieve_data()['companies']
assert len(companies) > 2000
def test_optionable_list_format(self):
companies = CboeOptionableList.retrieve_data()['companies']
symbols = [c['Stock Symbol'] for c in companies]
assert 'AAPL' in symbols