mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-04 09:57:37 +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)
 |