9 lines
111 B
Python
9 lines
111 B
Python
import pytest
|
|
|
|
from sanic import Sanic
|
|
|
|
|
|
@pytest.fixture
|
|
def app(request):
|
|
return Sanic(request.node.name)
|