(self, eio)
| 821 | } |
| 822 | |
| 823 | def test_disconnect(self, eio): |
| 824 | s = server.Server() |
| 825 | s.handlers['/'] = {} |
| 826 | s._handle_eio_connect('123', 'environ') |
| 827 | s._handle_eio_message('123', '0') |
| 828 | s.disconnect('1') |
| 829 | s.eio.send.assert_any_call('123', '1') |
| 830 | |
| 831 | def test_disconnect_ignore_queue(self, eio): |
| 832 | s = server.Server() |
nothing calls this directly
no test coverage detected