diff options
Diffstat (limited to 'app/tests/test_cli.py')
-rw-r--r-- | app/tests/test_cli.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/tests/test_cli.py b/app/tests/test_cli.py index 194dd64..bbbe53b 100644 --- a/app/tests/test_cli.py +++ b/app/tests/test_cli.py @@ -1,7 +1,16 @@ +# -*- coding: utf-8 -*- +""" +Test(s) for CLI Commands +""" from app import database_cli def test_database_commands(app, client): + """ + Test for Database CLI Commands + + Test for initialisation, creation and admin user creation. + """ runner = app.test_cli_runner() assert runner.invoke(database_cli, ["delete"]).exit_code == 0 assert runner.invoke(database_cli, ["create"]).exit_code == 0 |