(self)
| 194 | assert self.c.__doc__.strip().split("\n")[0] == expected |
| 195 | |
| 196 | def works_great_with_subclassing(self): |
| 197 | class MyCollection(Collection): |
| 198 | pass |
| 199 | |
| 200 | c = MyCollection.from_module(load("integration")) |
| 201 | assert isinstance(c, MyCollection) |
| 202 | |
| 203 | def submodule_names_are_stripped_to_last_chunk(self): |
| 204 | with support_path(): |
nothing calls this directly
no test coverage detected