(self)
| 698 | []) |
| 699 | |
| 700 | def test_long_option_argument_joined(self): |
| 701 | self.assertParseOK(["--boo=13"], |
| 702 | {'a': None, 'boo': 13, 'foo': None}, |
| 703 | []) |
| 704 | |
| 705 | def test_long_option_argument_split(self): |
| 706 | self.assertParseOK(["--boo", "111"], |
nothing calls this directly
no test coverage detected