aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/auth/test_migrations_indexes.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-11-10 15:04:01 +0300
committerFrederick Muriuki Muriithi2022-11-10 15:04:01 +0300
commitee72678fabb86d66ba7d61d26643cc73df94ee5d (patch)
tree363806effbcb373fb94954ae751cd999a88152ed /tests/unit/auth/test_migrations_indexes.py
parent9f9707e9c3b8a386584146767894f9d517c45e3b (diff)
downloadgenenetwork3-ee72678fabb86d66ba7d61d26643cc73df94ee5d.tar.gz
Migrations: migration for `role_privileges` table
* tests/unit/auth/test_create_table_migrations.py: new migration * tests/unit/auth/test_migrations_indexes.py: test new migration
Diffstat (limited to 'tests/unit/auth/test_migrations_indexes.py')
-rw-r--r--tests/unit/auth/test_migrations_indexes.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/auth/test_migrations_indexes.py b/tests/unit/auth/test_migrations_indexes.py
index e18a452..eed0272 100644
--- a/tests/unit/auth/test_migrations_indexes.py
+++ b/tests/unit/auth/test_migrations_indexes.py
@@ -16,7 +16,9 @@ AND name= ?
migrations_tables_and_indexes = (
("20221110_05_BaNtL-create-roles-table.py", "roles",
- "idx_tbl_roles_cols_group_id"),)
+ "idx_tbl_roles_cols_group_id"),
+ ("20221110_07_7WGa1-create-role-privileges-table.py", "role_privileges",
+ "idx_tbl_role_privileges_cols_role_id"))
@pytest.mark.unit_test
@pytest.mark.parametrize(