(expr: str, expected: bool)
| 46 | ), |
| 47 | ) |
| 48 | def test_basic(expr: str, expected: bool) -> None: |
| 49 | matcher = {"true": True, "false": False}.__getitem__ |
| 50 | assert evaluate(expr, matcher) is expected |
| 51 | |
| 52 | |
| 53 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected