DEBSOURCES
Skip Quicknav
sources / python-falcon / 4.0.2-2 / examples / ws_tutorial / tests / conftest.py
123456789
import pytest from ws_tutorial.app import app import falcon.testing @pytest.fixture() def client(): return falcon.testing.TestClient(app)