()
| 266 | |
| 267 | |
| 268 | def test_docstring_signatures(): |
| 269 | for enum_type in [m.ScopedEnum, m.UnscopedEnum]: |
| 270 | for attr in enum_type.__dict__.values(): |
| 271 | # Issue #2623/PR #2637: Add argument names to enum_ methods |
| 272 | assert "arg0" not in (attr.__doc__ or "") |
| 273 | |
| 274 | |
| 275 | def test_str_signature(): |