예제 #1
0
파일: test_search.py 프로젝트: servnk/okama
def test_search_namespace_frame():
    x = search(
        "aeroflot",
        namespace="MOEX",
        response_format="frame",
    )
    assert x['symbol'].values[0] == 'AFLT.MOEX'
예제 #2
0
파일: test_search.py 프로젝트: servnk/okama
def test_search_namespace_json():
    x = search(
        "aeroflot",
        namespace="MOEX",
        response_format="json",
    )
    assert json.loads(x)[0]['symbol'] == 'AFLT.MOEX'
예제 #3
0
파일: test_search.py 프로젝트: servnk/okama
def test_search_error():
    with pytest.raises(ValueError):
        search("arg", response_format='txt')
예제 #4
0
파일: test_search.py 프로젝트: servnk/okama
def test_search_all_frame():
    x = search(
        "lkoh",
        response_format="frame",
    )
    assert x['symbol'].iloc[0] == 'LKOH.MOEX'
예제 #5
0
파일: test_search.py 프로젝트: servnk/okama
def test_search_all_json():
    x = search(
        "lkoh",
        response_format="json",
    )
    assert x[1][0] == 'LKOH.MOEX'