0.5: Django 3.2 support, drop Django<1.11, Python<3.6, remove some compatibility...
[fnpdjango.git] / tests / tests / test_utils_settings.py
1 # This file is part of FNPDjango, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See README.md for more information.
3 #
4 from django.conf import settings
5 from django.test import TestCase
6
7
8 class UtilsSettingsTestCase(TestCase):
9     def test_lazy_ugettext_lazy(self):
10         self.assertEqual(str(settings.TEST_LAZY_UGETTEXT_LAZY),
11             "Lazy setting.")
12
13