Esempio n. 1
0
 def test_throttled_socket_send(self):
     fake = FakeSocket()
     throttled = ThrottledSocket(100, 100, fake)
     with pytest.raises(Exception) as excinfo:
         throttled.sendall()
     assert "fake send" in excinfo.value