(self)
| 285 | ) |
| 286 | |
| 287 | def mixed_corelike_options(self): |
| 288 | self._assert_order( |
| 289 | [ |
| 290 | ("V", "version"), |
| 291 | ("c", "collection"), |
| 292 | ("h", "help"), |
| 293 | ("l", "list"), |
| 294 | ("r", "root"), |
| 295 | ], |
| 296 | ["-c", "-h", "-l", "-r", "-V"], |
| 297 | ) |
| 298 | |
| 299 | class missing_positional_args: |
| 300 | def represents_positional_args_missing_values(self): |
nothing calls this directly
no test coverage detected