def test_search_namespace_frame(): x = search( "aeroflot", namespace="MOEX", response_format="frame", ) assert x['symbol'].values[0] == 'AFLT.MOEX'
def test_search_namespace_json(): x = search( "aeroflot", namespace="MOEX", response_format="json", ) assert json.loads(x)[0]['symbol'] == 'AFLT.MOEX'
def test_search_error(): with pytest.raises(ValueError): search("arg", response_format='txt')
def test_search_all_frame(): x = search( "lkoh", response_format="frame", ) assert x['symbol'].iloc[0] == 'LKOH.MOEX'
def test_search_all_json(): x = search( "lkoh", response_format="json", ) assert x[1][0] == 'LKOH.MOEX'