标签: python nose nosetests
我有一个python鼻子测试功能
def test_foo(): a = 1 b = 2
我希望在我的自定义插件中将源代码作为字符串(" \ ta = 1 \ n \ tb = 2")。我试试
def startTest(self, test): print inspect.getsource(test)
以上代码无法正常工作。如何使它工作?