mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 01:56:58 +03:00
14 lines
351 B
Python
14 lines
351 B
Python
"""Dependency injector unittests."""
|
|
|
|
import unittest2 as unittest
|
|
|
|
from dependency_injector import VERSION
|
|
|
|
|
|
class VersionTest(unittest.TestCase):
|
|
"""Version constant tests."""
|
|
|
|
def test_version_follows_semantic_versioning(self):
|
|
"""Test that version follows semantic versioning."""
|
|
self.assertEquals(len(VERSION.split('.')))
|