mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-28 09:17:17 +00:00
The issue appears in case if versions ar the same (e.g. rebuild); in this case printer doesn't increment version as builder does. Also util has been renamed to utils, keeping backward compatibiltiy
12 lines
257 B
Python
12 lines
257 B
Python
import ahriman.core.utils
|
|
|
|
from ahriman.core.util import *
|
|
|
|
|
|
def test_import() -> None:
|
|
"""
|
|
ahriman.core.util must provide same methods as ahriman.core.utils module
|
|
"""
|
|
for method in dir():
|
|
assert hasattr(ahriman.core.utils, method)
|