(self)
| 28 | assert Argument(name="foo", positional=True).positional is True |
| 29 | |
| 30 | def positional_is_False_by_default(self): |
| 31 | assert Argument(name="foo").positional is False |
| 32 | |
| 33 | def can_set_attr_name_to_control_name_attr(self): |
| 34 | a = Argument("foo", attr_name="bar") |