Does not attach __attrs_attrs__ to the class.
(self)
| 179 | """ |
| 180 | |
| 181 | def test_no_modifications(self): |
| 182 | """ |
| 183 | Does not attach __attrs_attrs__ to the class. |
| 184 | """ |
| 185 | C = make_tc() |
| 186 | _transform_attrs(C, None, False, ClassProps.KeywordOnly.NO, True, None) |
| 187 | |
| 188 | assert None is getattr(C, "__attrs_attrs__", None) |
| 189 | |
| 190 | def test_normal(self): |
| 191 | """ |
nothing calls this directly
no test coverage detected