6 lines
149 B
Python
6 lines
149 B
Python
|
from sanic.testing import SanicASGITestClient
|
||
|
|
||
|
|
||
|
def test_asgi_client_instantiation(app):
|
||
|
assert isinstance(app.asgi_client, SanicASGITestClient)
|