(self)
| 773 | []) |
| 774 | |
| 775 | def test_combined_single_invalid_option(self): |
| 776 | self.parser.add_option("-t", action="store_true") |
| 777 | self.assertParseFail(["-test"], |
| 778 | "no such option: -e") |
| 779 | |
| 780 | class TestBool(BaseTest): |
| 781 | def setUp(self): |
nothing calls this directly
no test coverage detected