(self)
| 383 | complex_context_deferred.format(name="Jim") |
| 384 | |
| 385 | def test_ngettext_lazy_bool(self): |
| 386 | self.assertTrue(ngettext_lazy("%d good result", "%d good results")) |
| 387 | self.assertFalse(ngettext_lazy("", "")) |
| 388 | |
| 389 | def test_ngettext_lazy_pickle(self): |
| 390 | s1 = ngettext_lazy("%d good result", "%d good results") |
nothing calls this directly
no test coverage detected