Commit 9ae7407c authored by Denis Bilenko's avatar Denis Bilenko

delete greentest/test__nochild.py

parent 364c5dbf
import gevent.core
import unittest
class Test(unittest.TestCase):
if hasattr(gevent.core, 'child'):
def test(self):
loop = gevent.core.loop('nochild', default=True)
self.assertRaises(TypeError, loop.child, 1)
loop = gevent.core.loop(default=False)
self.assertRaises(TypeError, loop.child, 1)
if __name__ == '__main__':
unittest.main()
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