From cc897d624d091c679ef304df9ff35f1093ae1ac0 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Sun, 31 May 2020 17:27:13 +0100 Subject: created a group fixture with perms This fixture is a group with all permissions relating to ctrack system so far. --- ctrack/users/tests/test_credentials.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ctrack/users') 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" -- cgit v1.2.3