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.
mitogen/tests/nested_test.py

14 lines
318 B
Python

import os
import testlib
class NestedTest(testlib.RouterMixin, testlib.TestCase):
def test_nested(self):
context = None
for x in range(1, 11):
context = self.router.local(via=context, name='local%d' % x)
pid = context.call(os.getpid)
self.assertIsInstance(pid, int)