(self)
| 1403 | self.assertEqual(".", get_format("DECIMAL_SEPARATOR", lang="en")) |
| 1404 | |
| 1405 | def test_get_format_lazy_format(self): |
| 1406 | self.assertEqual(get_format(gettext_lazy("DATE_FORMAT")), "N j, Y") |
| 1407 | |
| 1408 | def test_localize_templatetag_and_filter(self): |
| 1409 | """ |
nothing calls this directly
no test coverage detected