Test that try-import don't crash on trailing dot, and import modules before
(self)
| 1778 | self.assertIn("qwick", matches) |
| 1779 | |
| 1780 | def test_tryimport(self): |
| 1781 | """ |
| 1782 | Test that try-import don't crash on trailing dot, and import modules before |
| 1783 | """ |
| 1784 | from IPython.core.completerlib import try_import |
| 1785 | |
| 1786 | assert try_import("IPython.") |
| 1787 | |
| 1788 | def test_aimport_module_completer(self): |
| 1789 | ip = get_ipython() |
nothing calls this directly
no test coverage detected