mirror of https://github.com/morpheus65535/bazarr
15 lines
407 B
Python
15 lines
407 B
Python
import unittest
|
|
|
|
__author__ = "Artur Barseghyan"
|
|
__copyright__ = "2013-2023 Artur Barseghyan"
|
|
__license__ = "MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later"
|
|
__all__ = ("TestRegistry",)
|
|
|
|
|
|
class TestRegistry(unittest.TestCase):
|
|
"""Test registry."""
|
|
|
|
def test_import_from_registry(self):
|
|
"""Test import from deprecated `valuta.registry` module."""
|
|
from ..registry import Registry # noqa
|