Literal format that equals the entire input must match (zero fields).
()
| 274 | |
| 275 | |
| 276 | def test_format_equals_input(): |
| 277 | """Literal format that equals the entire input must match (zero fields).""" |
| 278 | def run(): |
| 279 | r = parse("exact text", "exact text") |
| 280 | assert r is not None |
| 281 | assert len(r.fixed) == 0 |
| 282 | _check_no_crash(run) |
| 283 | |
| 284 | |
| 285 | # ══════════════════════════════════════════════════════════════════════ |
nothing calls this directly
no test coverage detected