(self)
| 130 | self.assertEqual(flag, expected) |
| 131 | |
| 132 | def test_error_expr(self): |
| 133 | with self.assertRaisesRegex(RuntimeError, r"1\+\[\]"): |
| 134 | ConfigExpression(id="", config="$1+[]").evaluate() |
| 135 | |
| 136 | |
| 137 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected