(self)
| 1549 | self.assertHelpEquals(expect) |
| 1550 | |
| 1551 | def test_help_unicode_description(self): |
| 1552 | self.parser = InterceptingOptionParser(usage=SUPPRESS_USAGE, |
| 1553 | description="ol\u00E9!") |
| 1554 | expect = """\ |
| 1555 | ol\u00E9! |
| 1556 | |
| 1557 | Options: |
| 1558 | -h, --help show this help message and exit |
| 1559 | """ |
| 1560 | self.assertHelpEquals(expect) |
| 1561 | |
| 1562 | def test_help_description_groups(self): |
| 1563 | self.parser.set_description( |
nothing calls this directly
no test coverage detected