From 152ad526f491e70905e2fec3b7d33a89cf23813b Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Mon, 5 Oct 2020 11:05:00 +0100 Subject: Tests: added ASGI Lifespan. --- test/python/lifespan/error_auto/asgi.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test/python/lifespan/error_auto/asgi.py (limited to 'test/python/lifespan/error_auto') diff --git a/test/python/lifespan/error_auto/asgi.py b/test/python/lifespan/error_auto/asgi.py new file mode 100644 index 00000000..90d506a1 --- /dev/null +++ b/test/python/lifespan/error_auto/asgi.py @@ -0,0 +1,2 @@ +async def application(scope, receive, send): + assert scope['type'] == 'http' -- cgit