test(settings): Remove no-permission failure test as user settings require no permissions

ref: #485 fixes #486
This commit is contained in:
2025-01-24 15:46:01 +09:30
parent b8cac94f9a
commit 06e0943e30

View File

@ -275,6 +275,34 @@ class UserSettingsPermissionsAPI(
pass
def test_change_no_permission_denied(self):
""" Ensure permission view cant make change
This test case is a duplicate of a test case with the same name.
This test is not required for this model as there are no permissions
assosiated with accessing this model.
Attempt to make change as user without permissions
"""
pass
def test_view_no_permission_denied(self):
""" Check correct permission for view
This test case is a duplicate of a test case with the same name.
This test is not required for this model as there are no permissions
assosiated with accessing this model.
Attempt to view with user missing permission
"""
pass
class UserSettingsViewSet(
ViewSetBase,