aboutsummaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-09-08 05:52:38 +0300
committerFrederick Muriuki Muriithi2023-09-26 03:44:27 +0300
commit7cfd3ba3e2bc37f2433301b455b70034690a5683 (patch)
tree796126f60c9059a36d73d03ebc4c7b5ad35737d6 /tests/unit
parent666bff009e437a8bca6003b2e6ce4acd451e8e0e (diff)
downloadgn-auth-7cfd3ba3e2bc37f2433301b455b70034690a5683.tar.gz
migrations: Create `group_resources` table.
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/auth/test_migrations_create_tables.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/auth/test_migrations_create_tables.py b/tests/unit/auth/test_migrations_create_tables.py
index eb0e161..8b0f36e 100644
--- a/tests/unit/auth/test_migrations_create_tables.py
+++ b/tests/unit/auth/test_migrations_create_tables.py
@@ -41,7 +41,9 @@ migrations_and_tables = (
("20230410_01_8mwaf-create-linked-mrna-data-table.py", "linked_mrna_data"),
("20230410_02_WZqSf-create-mrna-resources-table.py", "mrna_resources"),
("20230907_01_pjnxz-refactor-add-resource-ownership-table.py",
- "resource_ownership"))
+ "resource_ownership"),
+ ("20230907_04_3LnrG-refactor-create-group-resources-table.py",
+ "group_resources"))
@pytest.mark.unit_test
@pytest.mark.parametrize("migration_file,the_table", migrations_and_tables)