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.
25 lines
443 B
Python
25 lines
443 B
Python
|
|
import os
|
|
|
|
import unittest2
|
|
|
|
import mitogen
|
|
import mitogen.ssh
|
|
import mitogen.utils
|
|
|
|
import testlib
|
|
import plain_old_module
|
|
|
|
|
|
class LocalTest(testlib.RouterMixin, unittest2.TestCase):
|
|
stream_class = mitogen.ssh.Stream
|
|
|
|
def test_stream_name(self):
|
|
context = self.router.local()
|
|
pid = context.call(os.getpid)
|
|
self.assertEquals('local.%d' % (pid,), context.name)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest2.main()
|