Exemplo n.º 1
0
def test_loop():
    """Test that we can loop through the server."""
    class _DummyException(Exception):
        pass

    # noinspection PyUnusedLocal
    @EVENTS.hook("server_loop")
    def _loop_hook():
        raise _DummyException()

    with pytest.raises(_DummyException):
        SERVER.loop()