defl/tests.old/template

14 lines
211 B
Plaintext
Raw Normal View History

2025-03-09 09:17:53 -04:00
from defl.testing_ import Tester, testFail
2024-09-11 11:14:03 -04:00
2025-03-09 09:17:53 -04:00
defl.log.setLevel('i')
2024-09-11 11:14:03 -04:00
tester = Tester(name=__file__)
2025-03-09 09:17:53 -04:00
2024-09-11 11:14:03 -04:00
@tester.add(assertResult=True)
def retTrue():
return True
2025-03-09 09:17:53 -04:00
2024-09-11 11:14:03 -04:00
log.info(tester.run())
tester.exitWithStatus()