(format)
| 2728 | class StringModuleTest(unittest.TestCase): |
| 2729 | def test_formatter_parser(self): |
| 2730 | def parse(format): |
| 2731 | return list(_string.formatter_parser(format)) |
| 2732 | |
| 2733 | formatter = parse("prefix {2!s}xxx{0:^+10.3f}{obj.attr!s} {z[0]!s:10}") |
| 2734 | self.assertEqual(formatter, [ |
no test coverage detected