chore: Add test-case for #760

This commit is contained in:
Serhii Tereshchenko 2024-09-28 15:11:05 +03:00
parent 7125db9f68
commit 880e37e7cd

View file

@ -0,0 +1,21 @@
# mypy: disable-error-code="import-not-found"
import pytest
from modeltranslation import translator
class TestDjangoModelUtils:
"""
Test case for https://github.com/deschler/django-modeltranslation/issues/760
"""
def test_soft_deletable_model(self):
try:
from model_utils.models import SoftDeletableModel
except ImportError:
pytest.skip("django-model-utils not installed")
class M1(SoftDeletableModel):
pass
@translator.register(M1)
class M1Options(translator.TranslationOptions):
pass