From a803693dde3e947d21617215231369b4b2d63033 Mon Sep 17 00:00:00 2001 From: Brian Rosner Date: Wed, 22 May 2024 22:47:14 -0600 Subject: [PATCH] remove test_gunicorn_arbiter_with_application --- tests/test_cli.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 04e7706..2d67b25 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -1,10 +1,8 @@ from unittest.mock import patch -import gunicorn.arbiter from click.testing import CliRunner import teufa.cli -from teufa.server import Application @patch("teufa.server.Application.run") @@ -31,8 +29,3 @@ def test_cli_server_dev(MockApplication): } ) MockApplication.return_value.run.assert_called_once_with() - - -def test_gunicorn_arbiter_with_application(): - arbiter = gunicorn.arbiter.Arbiter(Application()) - arbiter.stop()