(format, exc=NotImplementedError)
| 1420 | class TestCallEvaluateFunction(unittest.TestCase): |
| 1421 | def test_evaluation(self): |
| 1422 | def evaluate(format, exc=NotImplementedError): |
| 1423 | if format > 2: |
| 1424 | raise exc |
| 1425 | return undefined |
| 1426 | |
| 1427 | with self.assertRaises(NameError): |
| 1428 | annotationlib.call_evaluate_function(evaluate, Format.VALUE) |
no outgoing calls
no test coverage detected