(self)
| 1314 | self.assertTrueconflict_error(self.parser.add_option) |
| 1315 | |
| 1316 | def test_conflict_error_group(self): |
| 1317 | group = OptionGroup(self.parser, "Group 1") |
| 1318 | self.assertTrueconflict_error(group.add_option) |
| 1319 | |
| 1320 | def test_no_such_conflict_handler(self): |
| 1321 | self.assertRaises( |
nothing calls this directly
no test coverage detected