sanic/tests/conftest.py

9 lines
111 B
Python
Raw Normal View History

2018-08-26 15:43:14 +01:00
import pytest
from sanic import Sanic
@pytest.fixture
def app(request):
return Sanic(request.node.name)