mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-24 08:51:48 -05:00
11 lines
336 B
Python
11 lines
336 B
Python
import pytest
|
|
|
|
|
|
@pytest.mark.django_db()
|
|
def test_admin_not_member(team):
|
|
"Test to ensure we don't add admin_role as a parent to team.member_role, as "
|
|
"this creates a cycle with organization administration, which we've decided "
|
|
"to remove support for"
|
|
|
|
assert team.admin_role.is_ancestor_of(team.member_role) is False
|