We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
With Flask you can do this:
class TestApp: @pytest.fixture def client(self): flask_app = app with flask_app.app.test_client() as client: yield client
But Klein app does not have a test_client or anything like it. Is there a way to test it?
Activity