18 lines
435 B
Python
18 lines
435 B
Python
|
|
"""Smoke tests for the package scaffold.
|
||
|
|
|
||
|
|
These exist to prove the test harness and import path are wired correctly.
|
||
|
|
Replace/extend them as the domain model (shards, adapters, projections,
|
||
|
|
overlays — see INTENT.md) takes shape.
|
||
|
|
"""
|
||
|
|
|
||
|
|
import shard_wiki
|
||
|
|
|
||
|
|
|
||
|
|
def test_package_imports():
|
||
|
|
assert shard_wiki is not None
|
||
|
|
|
||
|
|
|
||
|
|
def test_version_is_exposed():
|
||
|
|
assert isinstance(shard_wiki.__version__, str)
|
||
|
|
assert shard_wiki.__version__
|