diff options
author | Frederick Muriuki Muriithi | 2022-11-15 06:27:33 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-11-15 06:27:33 +0300 |
commit | d043cd59127a1031de20b12562712b6e3c50feef (patch) | |
tree | befe3233dc4136158e300e8ffeef6db41b11e2ac /tests/unit/auth/test_groups.py | |
parent | 3dc9a8a4f413d142e84a81f9c1abafedb779d7dd (diff) | |
download | genenetwork3-d043cd59127a1031de20b12562712b6e3c50feef.tar.gz |
pylint: Fix a myriad of linting errors
Diffstat (limited to 'tests/unit/auth/test_groups.py')
-rw-r--r-- | tests/unit/auth/test_groups.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/unit/auth/test_groups.py b/tests/unit/auth/test_groups.py index ac575d0..d83431e 100644 --- a/tests/unit/auth/test_groups.py +++ b/tests/unit/auth/test_groups.py @@ -1,7 +1,6 @@ """Test functions dealing with group management.""" from uuid import UUID -import flask import pytest from gn3.auth import db @@ -26,7 +25,14 @@ group_leader_id = lambda : UUID("d32611e3-07fc-4564-b56c-786c6db6de2b") ("ae9c6245-0966-41a5-9a5e-20885a96bea7", create_group_failure), ("9a0c7ce5-2f40-4e78-979e-bf3527a59579", create_group_failure), ("e614247d-84d2-491d-a048-f80b578216cb", create_group_failure))) -def test_create_group(test_app, auth_testdb_path, mocker, test_users, user_id, expected): +def test_create_group(# pylint: disable=[too-many-arguments] + test_app, auth_testdb_path, mocker, test_users, user_id, expected):# pylint: disable=[unused-argument] + """ + GIVEN: an authenticated user + WHEN: the user attempts to create a group + THEN: verify they are only able to create the group if they have the + appropriate privileges + """ mocker.patch("gn3.auth.authorisation.groups.uuid.uuid4", group_leader_id) with test_app.app_context() as flask_context: flask_context.g.user_id = UUID(user_id) |