aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/users/tests/test_credentials.py
diff options
context:
space:
mode:
Diffstat (limited to 'ctrack/users/tests/test_credentials.py')
-rw-r--r--ctrack/users/tests/test_credentials.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/ctrack/users/tests/test_credentials.py b/ctrack/users/tests/test_credentials.py
index 496eeaf..759d8cb 100644
--- a/ctrack/users/tests/test_credentials.py
+++ b/ctrack/users/tests/test_credentials.py
@@ -32,6 +32,11 @@ def test_there_is_a_cct_user_group(db): # adding fixture here
assert group in user.groups.all()
+def test_user_fixture_has_access_to_all_ctrack_models(db, cct_user_group):
+ view_org_perm = Permission.objects.get(codename="view_organisation")
+ assert view_org_perm in cct_user_group.permissions.all()
+
+
# def test_should_create_user(user_A: get_user_model()) -> None:
# assert user_A.username == "A"