generated from coulomb/repo-seed
Scaffold sandboxer package (src layout, typer CLI stub, pytest, ruff), Makefile targets, and document install/test/lint/build commands in AGENTS.md and stack-and-commands.md. Mark bootstrap workplan finished.
7 lines
174 B
Python
7 lines
174 B
Python
"""Smoke tests for the bootstrap package scaffold."""
|
|
|
|
from sandboxer import __version__
|
|
|
|
|
|
def test_version_is_semver_placeholder() -> None:
|
|
assert __version__ == "0.0.0" |