With Flask you can do this: ```python 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?