Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tests/test_shaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ def parse(tmp_path: Path, content: str) -> list[Any]:


def make_pool(tmp_path: Path, content: str) -> dict[str, list]:
"""Parse content and return a list-valued pool dict (mirrors _add_to_pool logic)."""
"""Parse content and return a list-valued pool dict.

This mirrors the private ``_add_to_pool`` behavior in ``openscad_packer.shaker``.
"""
nodes = parse(tmp_path, content)
pool: dict[str, list] = {}
for node in nodes:
Expand Down
Loading