Removed team<->org role cycle

This commit is contained in:
Akita Noek
2016-04-18 11:27:22 -04:00
parent 6d8bab97df
commit 8b67f1d1c6
3 changed files with 13 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
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