(fmt, matches)
| 43 | |
| 44 | def test_format_variety(): |
| 45 | def _(fmt, matches): |
| 46 | d = parse.extract_format(fmt, {"spam": "spam"}) |
| 47 | for k in matches: |
| 48 | assert d.get(k) == matches[k] |
| 49 | |
| 50 | for t in "%obxegfdDwWsS": |
| 51 | _(t, {"type": t}) |
no outgoing calls
no test coverage detected