コード例 #1
0
ファイル: test_quandl.py プロジェクト: Coding4ufn/intuition
 def test__build_invalid_quandl_code(self):
     new_symbol = quandl._build_quandl_code('e8ver51')
     eq_(new_symbol, 'GOOG/NASDAQ_E8VER51')
コード例 #2
0
ファイル: test_quandl.py プロジェクト: Coding4ufn/intuition
 def test__build_cac40_quandl_code(self):
     new_symbol = quandl._build_quandl_code('jxr.pa')
     eq_(new_symbol, 'YAHOO/PA_JXR')
コード例 #3
0
ファイル: test_quandl.py プロジェクト: Coding4ufn/intuition
 def test__build_nasdaq_quandl_code(self):
     new_symbol = quandl._build_quandl_code('goog')
     eq_(new_symbol, 'GOOG/NASDAQ_GOOG')
コード例 #4
0
 def test__build_invalid_quandl_code(self):
     new_symbol = quandl._build_quandl_code('e8ver51')
     eq_(new_symbol, 'GOOG/NASDAQ_E8VER51')
コード例 #5
0
 def test__build_cac40_quandl_code(self):
     new_symbol = quandl._build_quandl_code('jxr.pa')
     eq_(new_symbol, 'YAHOO/PA_JXR')
コード例 #6
0
 def test__build_nasdaq_quandl_code(self):
     new_symbol = quandl._build_quandl_code('goog')
     eq_(new_symbol, 'GOOG/NASDAQ_GOOG')