mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-04-14 22:24:25 +03:00
Migrate common tests to pytest
This commit is contained in:
parent
679e48fd38
commit
af286548b3
|
@ -1,11 +1,7 @@
|
|||
"""Dependency injector common unit tests."""
|
||||
|
||||
import unittest
|
||||
|
||||
from dependency_injector import __version__
|
||||
|
||||
|
||||
class VersionTest(unittest.TestCase):
|
||||
|
||||
def test_version_follows_semantic_versioning(self):
|
||||
self.assertEqual(len(__version__.split(".")), 3)
|
||||
def test_version_follows_semantic_versioning():
|
||||
assert len(__version__.split(".")) == 3
|
||||
|
|
Loading…
Reference in New Issue
Block a user