diff options
Diffstat (limited to 'app/tests/test_cli.py')
-rw-r--r-- | app/tests/test_cli.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/tests/test_cli.py b/app/tests/test_cli.py index 7a5aa73..aec4cee 100644 --- a/app/tests/test_cli.py +++ b/app/tests/test_cli.py @@ -3,4 +3,5 @@ from app import database_cli def test_database_commands(app, client): runner = app.test_cli_runner() assert runner.invoke(database_cli,["delete"]).exit_code == 0 - assert runner.invoke(database_cli,["create"]).exit_code == 0
\ No newline at end of file + assert runner.invoke(database_cli,["create"]).exit_code == 0 + assert runner.invoke(database_cli,["admin-create"]).exit_code == 0
\ No newline at end of file |