(expr: str, expected: bool)
| 62 | ), |
| 63 | ) |
| 64 | def test_syntax_oddeties(expr: str, expected: bool) -> None: |
| 65 | matcher = {"true": True, "false": False}.__getitem__ |
| 66 | assert evaluate(expr, matcher) is expected |
| 67 | |
| 68 | |
| 69 | def test_backslash_not_treated_specially() -> None: |
nothing calls this directly
no test coverage detected