(self)
| 286 | # Test number formatting with a cooked "fr_FR" locale. |
| 287 | |
| 288 | def test_decimal_point(self): |
| 289 | self._test_format_string("%.2f", 12345.67, out='12345,67') |
| 290 | |
| 291 | def test_grouping(self): |
| 292 | self._test_format_string("%.2f", 345.67, grouping=True, out='345,67') |
nothing calls this directly
no test coverage detected