mirror of
https://github.com/bspeice/metrik
synced 2025-07-01 05:46:22 -04:00
Initial commit for metrik
This commit is contained in:
0
test/tasks/__init__.py
Normal file
0
test/tasks/__init__.py
Normal file
22
test/tasks/test_bloomberg.py
Normal file
22
test/tasks/test_bloomberg.py
Normal file
@ -0,0 +1,22 @@
|
||||
from unittest import TestCase
|
||||
|
||||
from metrik.conf import USER_AGENT
|
||||
from metrik.tasks.bloomberg import BloombergEquityInfo
|
||||
|
||||
|
||||
class BloombergTest(TestCase):
|
||||
def test_correct_info_apple(self):
|
||||
sector, industry, sub_industry = \
|
||||
BloombergEquityInfo.retrieve_info("AAPL:US", USER_AGENT)
|
||||
|
||||
assert sector == 'Technology'
|
||||
assert industry == 'Hardware'
|
||||
assert sub_industry == 'Communications Equipment'
|
||||
|
||||
def test_correct_info_kcg(self):
|
||||
sector, industry, sub_industry = \
|
||||
BloombergEquityInfo.retrieve_info("KCG:US", USER_AGENT)
|
||||
|
||||
assert sector == 'Financials'
|
||||
assert industry == 'Institutional Financial Svcs'
|
||||
assert sub_industry == 'Institutional Brokerage'
|
Reference in New Issue
Block a user