(format, exc=NotImplementedError)
| 1395 | class TestCallEvaluateFunction(unittest.TestCase): |
| 1396 | def test_evaluation(self): |
| 1397 | def evaluate(format, exc=NotImplementedError): |
| 1398 | if format > 2: |
| 1399 | raise exc |
| 1400 | return undefined |
| 1401 | |
| 1402 | with self.assertRaises(NameError): |
| 1403 | annotationlib.call_evaluate_function(evaluate, Format.VALUE) |
no outgoing calls
no test coverage detected