()
| 28 | |
| 29 | |
| 30 | def test_eval_empty_globals(): |
| 31 | assert "__builtins__" in m.eval_empty_globals(None) |
| 32 | |
| 33 | g = {} |
| 34 | assert "__builtins__" in m.eval_empty_globals(g) |
| 35 | assert "__builtins__" in g |
| 36 | |
| 37 | |
| 38 | def test_eval_closure(): |
nothing calls this directly
no outgoing calls
no test coverage detected