Exemplo n.º 1
0
 def test_customized_message(self):
     tout = KeywordTimeout('1s', 'My message', VariableMock())
     tout.start()
     tout.run(passing)
     tout.secs = 0.001
     assert_raises_with_msg(TimeoutError, 'My message',
                            tout.run, sleeping, (10,))
Exemplo n.º 2
0
 def test_customized_message(self):
     tout = KeywordTimeout('1s', 'My message', VariableMock())
     tout.start()
     tout.run(passing)
     tout.secs = 0.001
     assert_raises_with_msg(TimeoutError, 'My message',
                            tout.run, sleeping, (10,))