(self)
| 86 | simple_eval("2 ** 3") |
| 87 | |
| 88 | def test_function_calls_raise(self): |
| 89 | with self.assertRaises(ValueError): |
| 90 | simple_eval("1()") |
| 91 | |
| 92 | def test_nonexistant_names_raise(self): |
| 93 | with self.assertRaises(EvaluationError): |
nothing calls this directly
no test coverage detected