mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 17:47:02 +03:00
12 lines
274 B
Python
12 lines
274 B
Python
"""Dependency injector common unit tests."""
|
|
|
|
import unittest2 as unittest
|
|
|
|
from dependency_injector import __version__
|
|
|
|
|
|
class VersionTest(unittest.TestCase):
|
|
|
|
def test_version_follows_semantic_versioning(self):
|
|
self.assertEqual(len(__version__.split('.')), 3)
|