aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-12-19 13:43:29 +0300
committerFrederick Muriuki Muriithi2022-12-21 06:13:41 +0300
commitd6f699bb0d2a9edca539733a16f786a1b7e957ae (patch)
treeb889d42a1b8e3921ff0265fa7aa7fd00fd68a639 /tests
parent58d6c8aa771766d34f7ac5b2e67c57c9a514f77f (diff)
downloadgenenetwork3-d6f699bb0d2a9edca539733a16f786a1b7e957ae.tar.gz
migrations: create oauth2_tokens table
* migrations/auth/20221219_02_buSEU-create-oauth2-tokens-table.py * tests/unit/auth/test_migrations_create_tables.py
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/auth/test_migrations_create_tables.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit/auth/test_migrations_create_tables.py b/tests/unit/auth/test_migrations_create_tables.py
index 4a606b5..30644f5 100644
--- a/tests/unit/auth/test_migrations_create_tables.py
+++ b/tests/unit/auth/test_migrations_create_tables.py
@@ -27,7 +27,8 @@ migrations_and_tables = (
("20221117_02_fmuZh-create-group-users-table.py", "group_users"),
("20221206_01_BbeF9-create-group-user-roles-on-resources-table.py",
"group_user_roles_on_resources"),
- ("20221219_01_CI3tN-create-oauth2-clients-table.py", "oauth2_clients"))
+ ("20221219_01_CI3tN-create-oauth2-clients-table.py", "oauth2_clients"),
+ ("20221219_02_buSEU-create-oauth2-tokens-table.py", "oauth2_tokens"),
@pytest.mark.unit_test
@pytest.mark.parametrize("migration_file,the_table", migrations_and_tables)