(self)
| 2299 | self.assertEqual(expected_text, result) |
| 2300 | |
| 2301 | def test_resolve_false(self): |
| 2302 | # Issue #23008: pydoc enum.{,Int}Enum failed |
| 2303 | # because bool(enum.Enum) is False. |
| 2304 | with captured_stdout() as help_io: |
| 2305 | pydoc.help('enum.Enum') |
| 2306 | helptext = help_io.getvalue() |
| 2307 | self.assertIn('class Enum', helptext) |
| 2308 | |
| 2309 | |
| 2310 | class TestInternalUtilities(unittest.TestCase): |
nothing calls this directly
no test coverage detected