Pydoc needs to be able to provide help() for everything inside a pybind11 module
()
| 89 | reason="TODO should be fixed on GraalPy side (failure was introduced by pr #5782)", |
| 90 | ) |
| 91 | def test_pydoc(): |
| 92 | """Pydoc needs to be able to provide help() for everything inside a pybind11 module""" |
| 93 | import pydoc |
| 94 | |
| 95 | import pybind11_tests |
| 96 | |
| 97 | assert pybind11_tests.__name__ == "pybind11_tests" |
| 98 | assert pybind11_tests.__doc__ == "pybind11 test module" |
| 99 | assert pydoc.text.docmodule(pybind11_tests) |
| 100 | |
| 101 | |
| 102 | def test_module_handle_type_name(): |
nothing calls this directly
no outgoing calls
no test coverage detected