You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
338 B
Python
20 lines
338 B
Python
5 years ago
|
import sys
|
||
|
import unittest
|
||
|
import threading
|
||
|
import gevent
|
||
|
import gevent.monkey
|
||
|
gevent.monkey.patch_all()
|
||
|
|
||
|
|
||
|
@unittest.skipUnless(
|
||
|
sys.version_info[0] == 2,
|
||
|
"Only on Python 2"
|
||
|
)
|
||
|
class Test(unittest.TestCase):
|
||
|
|
||
|
def test(self):
|
||
|
self.assertIs(threading._sleep, gevent.sleep)
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|