Ejemplo n.º 1
0
def test_iai_add_role(indexed_authz_info):
    """
    unit tested:  add_role

    test case:
    updates the set, roles, with the new role(s)
    """
    info = indexed_authz_info
    roles = {SimpleRole('roleA'), SimpleRole('roleB')}
    info.add_role(roles)
    assert roles <= info.roles
Ejemplo n.º 2
0
def test_simple_role_not_equals_other(populated_simple_role):
    psr = populated_simple_role
    testrole = SimpleRole('role2')
    assert psr != testrole
Ejemplo n.º 3
0
def role_collection():
    return {SimpleRole('role1'), SimpleRole('role2'), SimpleRole('role3')}
Ejemplo n.º 4
0
def populated_simple_role():
    return SimpleRole('role1')