diff options
author | Frederick Muriuki Muriithi | 2022-11-10 15:04:01 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-11-10 15:04:01 +0300 |
commit | ee72678fabb86d66ba7d61d26643cc73df94ee5d (patch) | |
tree | 363806effbcb373fb94954ae751cd999a88152ed /tests | |
parent | 9f9707e9c3b8a386584146767894f9d517c45e3b (diff) | |
download | genenetwork3-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')
-rw-r--r-- | tests/unit/auth/test_create_table_migrations.py | 3 | ||||
-rw-r--r-- | tests/unit/auth/test_migrations_indexes.py | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/tests/unit/auth/test_create_table_migrations.py b/tests/unit/auth/test_create_table_migrations.py index 9e638d6..fbb9c0f 100644 --- a/tests/unit/auth/test_create_table_migrations.py +++ b/tests/unit/auth/test_create_table_migrations.py @@ -20,7 +20,8 @@ migrations_and_tables = ( ("20221110_03_ka3W0-create-phenotype-resources-table.py", "phenotype_resources"), ("20221110_04_6PRFQ-create-genotype-resources-table.py", "genotype_resources"), ("20221110_05_BaNtL-create-roles-table.py", "roles"), - ("20221110_06_Pq2kT-create-generic-roles-table.py", "generic_roles")) + ("20221110_06_Pq2kT-create-generic-roles-table.py", "generic_roles"), + ("20221110_07_7WGa1-create-role-privileges-table.py", "role_privileges")) @pytest.mark.unit_test @pytest.mark.parametrize("migration_file,the_table", migrations_and_tables) 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( |