(self)
| 279 | self._test_format_string("%.2f", 12345.67, grouping=True, out='12345.67') |
| 280 | |
| 281 | def test_grouping_and_padding(self): |
| 282 | self._test_format_string("%9.2f", 12345.67, grouping=True, out=' 12345.67') |
| 283 | |
| 284 | |
| 285 | class TestFrFRNumberFormatting(FrFRCookedTest, BaseFormattingTest): |
nothing calls this directly
no test coverage detected