(self)
| 64 | self.add_exec("if True:", True) |
| 65 | |
| 66 | def testAddExec_2(self): |
| 67 | # Change: 'more' must now be controlled in the client side after the initial 'True' returned. |
| 68 | self.add_exec("if True:\n testAddExec_a = 10\n", False) |
| 69 | assert "testAddExec_a" in self.front_end.get_namespace() |
| 70 | |
| 71 | def testAddExec_3(self): |
| 72 | assert "testAddExec_x" not in self.front_end.get_namespace() |
nothing calls this directly
no test coverage detected