mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 01:26:51 +03:00
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
|