mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 09:36:48 +03:00
12 lines
267 B
Python
12 lines
267 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.assertEquals(len(VERSION.split('.')), 3)
|