(self)
| 131 | self.restore_stdout() |
| 132 | |
| 133 | def testQuestionMark_1(self): |
| 134 | self.redirect_stdout() |
| 135 | try: |
| 136 | self.add_exec("?") |
| 137 | found = sys.stdout.getvalue() |
| 138 | if len(found) < 1000: |
| 139 | raise AssertionError("Expected IPython help to be big. Found: %s" % (found,)) |
| 140 | finally: |
| 141 | self.restore_stdout() |
| 142 | |
| 143 | def testQuestionMark_2(self): |
| 144 | self.redirect_stdout() |
nothing calls this directly
no test coverage detected