test: print render output for all formats

This commit is contained in:
banteg
2025-12-29 18:31:31 +04:00
parent 2950fe116d
commit a42692f935
+2
View File
@@ -102,6 +102,8 @@ def test_render_event_cli_all_formats_golden() -> None:
last_turn, lines = render_event_cli(evt, last_turn)
out.extend(lines)
print("\n".join(out))
expected = ALL_FORMATS_GOLDEN_PATH.read_text(encoding="utf-8").rstrip("\n")
assert "\n".join(out) == expected