Exemplo n.º 1
0
def test_group_dao_create_exception_missing_groupname():
    groups = GroupDAO()
    groups.group_create({})
Exemplo n.º 2
0
def test_group_dao_update_exception():
    groups = GroupDAO()
    groups.group_update("unknown_group", ["one", "two", "three"])
Exemplo n.º 3
0
def test_group_dao_delete_exception():
    groups = GroupDAO()
    groups.group_delete("unknown_group")
Exemplo n.º 4
0
def test_group_dao_get_exception():
    groups = GroupDAO()
    groups.group_get("unknown_group")