예제 #1
0
파일: test_utils.py 프로젝트: steder/zilla
 def test_logFunctionTime_debugOff(self):
     wf = utils.logFunctionTime(TestDecorators.f)
     self.assertEquals(TestDecorators.f.__name__, wf.__name__)
예제 #2
0
파일: test_utils.py 프로젝트: steder/zilla
 def test_logFunctionTime_debugOn(self):
     wf = utils.logFunctionTime(TestDecorators.f)
     self.assertEquals("f_timedFunction", wf.__name__)