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"
|