mirror of
https://github.com/zvx-echo6/meshai.git
synced 2026-08-26 17:31:34 +00:00
32 lines
652 B
Python
32 lines
652 B
Python
|
|
"""Phase-0b test harness — golden + gate-sequence helpers.
|
||
|
|
|
||
|
|
Import surface:
|
||
|
|
|
||
|
|
from tests.harness import (
|
||
|
|
pinned_time,
|
||
|
|
pinned_tz,
|
||
|
|
render_golden,
|
||
|
|
assert_byte_identical,
|
||
|
|
load_fixtures,
|
||
|
|
run_gate_sequence,
|
||
|
|
)
|
||
|
|
|
||
|
|
All helpers are pure-Python, stdlib-only, and safe to import at collection time.
|
||
|
|
"""
|
||
|
|
from tests.harness.goldens import (
|
||
|
|
assert_byte_identical,
|
||
|
|
load_fixtures,
|
||
|
|
pinned_time,
|
||
|
|
pinned_tz,
|
||
|
|
render_golden,
|
||
|
|
run_gate_sequence,
|
||
|
|
)
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"assert_byte_identical",
|
||
|
|
"load_fixtures",
|
||
|
|
"pinned_time",
|
||
|
|
"pinned_tz",
|
||
|
|
"render_golden",
|
||
|
|
"run_gate_sequence",
|
||
|
|
]
|