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