8 lines
184 B
Python
8 lines
184 B
Python
|
"""Dependency injector common unit tests."""
|
||
|
|
||
|
from dependency_injector import __version__
|
||
|
|
||
|
|
||
|
def test_version_follows_semantic_versioning():
|
||
|
assert len(__version__.split(".")) == 3
|