(self)
| 474 | self.assertIn('xml.etree.elementtree', doc_link) |
| 475 | |
| 476 | def test_issue8225(self): |
| 477 | # Test issue8225 to ensure no doc link appears for xml.etree |
| 478 | result, doc_loc = get_pydoc_text(xml.etree) |
| 479 | self.assertEqual(doc_loc, "", "MODULE DOCS incorrectly includes a link") |
| 480 | |
| 481 | def test_online_docs_link(self): |
| 482 | import encodings.idna |
nothing calls this directly
no test coverage detected