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
590 B
Python
25 lines
590 B
Python
import inspect
|
|
|
|
import unittest2
|
|
|
|
import testlib
|
|
import mitogen.master
|
|
|
|
|
|
class ScanCodeImportsTest(unittest2.TestCase):
|
|
func = staticmethod(mitogen.master.scan_code_imports)
|
|
|
|
def test_simple(self):
|
|
source_path = inspect.getsourcefile(ScanCodeImportsTest)
|
|
co = compile(open(source_path).read(), source_path, 'exec')
|
|
self.assertEquals(list(self.func(co)), [
|
|
(-1, 'inspect', ()),
|
|
(-1, 'unittest2', ()),
|
|
(-1, 'testlib', ()),
|
|
(-1, 'mitogen.master', ()),
|
|
])
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest2.main()
|