コード例 #1
0
def test_get_map_by_app_id_and_name_wrong_name():
    index = Index()
    index.parse(build_map())
    assert index.get_map('BankApp', 'Wrong') == dict()
コード例 #2
0
def test_get_map_by_app_id_wrong():
    index = Index()
    index.parse(build_map())
    assert index.get_map('Wrong') == dict()
コード例 #3
0
def test_get_map_by_app_id_and_name():
    index = Index()
    index.parse(build_map())
    assert index.get_map('BankApp', 'Conta') != None
コード例 #4
0
def test_get_map_by_app_id():
    index = Index()
    index.parse(build_map())
    assert index.get_map('BankApp') != None