Nothing happens if classes match.
(self)
| 1101 | """ |
| 1102 | |
| 1103 | def test_success(self): |
| 1104 | """ |
| 1105 | Nothing happens if classes match. |
| 1106 | """ |
| 1107 | v = _subclass_of(int) |
| 1108 | v(None, simple_attr("test"), int) |
| 1109 | |
| 1110 | def test_subclass(self): |
| 1111 | """ |
nothing calls this directly
no test coverage detected