Commit 91e11d85 authored by Denis Bilenko's avatar Denis Bilenko

test__timeout.py: add test__false

parent 10e39099
......@@ -40,6 +40,13 @@ class Test(greentest.TestCase):
timeout.start()
self._test(timeout)
def test_false(self):
timeout = gevent.Timeout(0.01, False)
timeout.start()
self._test(timeout)
timeout.start()
self._test(timeout)
def test_cancel(self):
timeout = gevent.Timeout(0.01)
timeout.start()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment