python-dependency-injector/tests/__init__.py

14 lines
351 B
Python
Raw Normal View History

2015-08-31 16:31:38 +03:00
"""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('.')))