(self)
| 325 | assert self.argdict[short] is self.argdict[long_] |
| 326 | |
| 327 | def autocreated_short_flags_can_be_disabled(self): |
| 328 | @task(auto_shortflags=False) |
| 329 | def mytask(c, arg): |
| 330 | pass |
| 331 | |
| 332 | args = self._task_to_dict(mytask) |
| 333 | assert "a" not in args |
| 334 | assert "arg" in args |
| 335 | |
| 336 | def autocreated_shortflags_dont_collide(self): |
| 337 | "auto-created short flags don't collide" |
nothing calls this directly
no test coverage detected