(self)
| 584 | self.assertEqual(msg, "tests.test_interactiveshell.DerivedInterrupt: foo\n") |
| 585 | |
| 586 | def test_inspect_text(self): |
| 587 | ip.run_cell("a = 5") |
| 588 | text = ip.object_inspect_text("a") |
| 589 | self.assertIsInstance(text, str) |
| 590 | |
| 591 | def test_last_execution_result(self): |
| 592 | """Check that last execution result gets set correctly (GH-10702)""" |
nothing calls this directly
no test coverage detected