8 lines
193 B
Python
8 lines
193 B
Python
from sentence_api.store import BoundaryStore
|
|
|
|
|
|
def test_missing_legacy_index_starts_empty(tmp_path):
|
|
store = BoundaryStore(tmp_path / "not-created-yet.json")
|
|
|
|
assert store.count() == 0
|