mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-21 19:33:02 +00:00
16 lines
705 B
Python
16 lines
705 B
Python
import os
|
|
from sherlock_interactives import Interactives
|
|
import sherlock_project
|
|
|
|
def test_versioning() -> None:
|
|
# Ensure __version__ matches version presented to the user
|
|
assert sherlock_project.__version__ in Interactives.run_cli("--version")
|
|
# Ensure __init__ is single source of truth for __version__ in package
|
|
# Temporarily allows sherlock.py so as to not trigger early upgrades
|
|
found:list = Interactives.walk_sherlock_for_files_with(r'__version__ *= *')
|
|
expected:list = [
|
|
# Normalization is REQUIRED for Windows ( / vs \ )
|
|
os.path.normpath("sherlock_project/__init__.py"),
|
|
]
|
|
# Sorting is REQUIRED for Mac
|
|
assert sorted(found) == sorted(expected)
|