Turcanu Veaceslav

Results 1 issues of Turcanu Veaceslav

How to reproduce ```python import pytest from sanic_testing.reusable import ReusableClient from sanic import Sanic from sanic import response @pytest.fixture(scope="session") def app(): sanic_app = Sanic("TestSanic") @sanic_app.get("/") def basic(request): return response.text("foo") @sanic_app.post("/api/login")...