aboutsummaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-04-04 12:13:11 +0300
committerFrederick Muriuki Muriithi2023-04-04 12:13:11 +0300
commit02e5c81e5d1281b66aa14ce47563997e845cea95 (patch)
tree4cb640d62c020979b90f0a3caf12ece73d94df25 /tests/unit
parent98e9726405df3cce81356534335259a446b0c458 (diff)
downloadgenenetwork3-02e5c81e5d1281b66aa14ce47563997e845cea95.tar.gz
Add tables to link genotype data
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/auth/test_migrations_create_tables.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/unit/auth/test_migrations_create_tables.py b/tests/unit/auth/test_migrations_create_tables.py
index 65f3896..1664b5c 100644
--- a/tests/unit/auth/test_migrations_create_tables.py
+++ b/tests/unit/auth/test_migrations_create_tables.py
@@ -29,7 +29,15 @@ migrations_and_tables = (
("20221219_03_PcTrb-create-authorisation-code-table.py",
"authorisation_code"),
("20230207_01_r0bkZ-create-group-join-requests-table.py",
- "group_join_requests"))
+ "group_join_requests"),
+ ("20230322_01_0dDZR-create-linked-phenotype-data-table.py",
+ "linked_phenotype_data"),
+ ("20230322_02_Ll854-create-phenotype-resources-table.py",
+ "phenotype_resources"),
+ ("20230404_01_VKxXg-create-linked-genotype-data-table.py",
+ "linked_genotype_data"),
+ ("20230404_02_la33P-create-genotype-resources-table.py",
+ "genotype_resources"))
@pytest.mark.unit_test
@pytest.mark.parametrize("migration_file,the_table", migrations_and_tables)