示例#1
0
 def test_logFunctionTime_debugOff(self):
     wf = utils.logFunctionTime(TestDecorators.f)
     self.assertEquals(TestDecorators.f.__name__, wf.__name__)
示例#2
0
 def test_logFunctionTime_debugOn(self):
     wf = utils.logFunctionTime(TestDecorators.f)
     self.assertEquals("f_timedFunction", wf.__name__)