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
448 B
Python
20 lines
448 B
Python
import os
|
|
import unittest
|
|
|
|
import testlib
|
|
|
|
|
|
class NestedTest(testlib.RouterMixin, testlib.TestCase):
|
|
def test_nested(self):
|
|
context = None
|
|
for x in range(1, 11):
|
|
#print 'Connect local%d via %s' % (x, context)
|
|
context = self.router.local(via=context, name='local%d' % x)
|
|
|
|
pid = context.call(os.getpid)
|
|
self.assertTrue(isinstance(pid, int))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|