(self)
| 210 | ) |
| 211 | |
| 212 | def test_not_instantiatable(self): |
| 213 | class Point: |
| 214 | pass |
| 215 | |
| 216 | self._fixture(Point) |
| 217 | alias = aliased(Point) |
| 218 | |
| 219 | assert_raises(TypeError, alias) |
| 220 | |
| 221 | def test_instancemethod(self): |
| 222 | class Point: |
nothing calls this directly
no test coverage detected