(self)
| 184 | assert result == ("--bar=STRING", "bar the baz") |
| 185 | |
| 186 | def task_driven_with_helpstr(self): |
| 187 | result = self.tasked.help_for("--otherarg") |
| 188 | assert result == ("-o STRING, --otherarg=STRING", "other help") |
| 189 | |
| 190 | # Yes, the next 3 tests are identical in form, but technically they |
| 191 | # test different behaviors. HERPIN' AN' DERPIN' |