(self)
| 101 | return events |
| 102 | |
| 103 | def test_missing_auth(self): |
| 104 | sio = socketio.AsyncServer(async_mode='asgi') |
| 105 | with pytest.raises(ValueError): |
| 106 | sio.instrument() |
| 107 | |
| 108 | @with_instrumented_server(auth=False) |
| 109 | def test_admin_connect_with_no_auth(self): |
nothing calls this directly
no test coverage detected