archive: botty_next test harness, legacy-go docs, and dev tools from my-botty

This commit is contained in:
alexpolo1
2026-08-07 22:25:26 +02:00
commit 5d960cde66
72 changed files with 3130 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from botty_next.vision.fixtures import load_screenshot, load_template
def test_load_sample_screenshot_fixture() -> None:
image = load_screenshot("sample_scene.ppm")
assert image.shape == (8, 8, 3)
def test_load_sample_template_fixture() -> None:
template = load_template("sample_marker.ppm")
assert template.shape == (3, 3, 3)