Files
sand-boxer/tests/test_package.py
tegwick b0a57cf9d3 Complete SAND-WP-0001: bootstrap Python dev workflow
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.
2026-06-22 23:25:42 +02:00

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"