# -*- coding: utf-8 -*-
def run():
def the_name():
if not hasattr(the_name, 'name'):
the_name.name = 'test'
return the_name.name
for i in range(3):
print(the_name())
run()
print('')
run()
print('')
run()
各位好,我想針對上面的 code 寫單元測試
主要是想判斷第一次執行時還沒有 the_name.name
執行第一次之後便存在這個 property 因此直接回覆 the_name.name
本是想用 self.assertFalse(getattr(run.the_name.name))
不過顯然不能這樣用,不知道怎麼可以達成需求