(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') |
| 293 | self._test_format_string("%.2f", 12345.67, grouping=True, out='12 345,67') |
| 294 | |
| 295 | def test_grouping_and_padding(self): |
| 296 | self._test_format_string("%6.2f", 345.67, grouping=True, out='345,67') |
nothing calls this directly
no test coverage detected