python-dependency-injector/tests/test_common.py
2015-11-23 21:45:58 +02:00

14 lines
341 B
Python

"""Common 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('.')), 3)