(self)
| 652 | self.assertParseFail(["-a"], "-a option requires 1 argument") |
| 653 | |
| 654 | def test_invalid_integer(self): |
| 655 | self.assertParseFail(["-b", "5x"], |
| 656 | "option -b: invalid integer value: '5x'") |
| 657 | |
| 658 | def test_no_such_option(self): |
| 659 | self.assertParseFail(["--boo13"], "no such option: --boo13") |
nothing calls this directly
no test coverage detected