Files
testium/test/validation/items/run/check_capture.py
2026-06-15 22:53:30 +02:00

10 lines
295 B
Python

import py_func.tm as tm
def assert_captured():
"""The sub-run log stored by `run` via store_result must be in the gdict."""
log = tm.gd("captured_log", "")
assert "Test run success." in log, \
"captured sub-run log not reachable from the gdict (store_result)"
return 0