(self, a1)
| 82 | assert attributes.has_parent(self.classes.User, a1, "addresses") |
| 83 | |
| 84 | def _assert_not_hasparent(self, a1): |
| 85 | assert not attributes.has_parent(self.classes.User, a1, "addresses") |
| 86 | |
| 87 | def _fixture(self): |
| 88 | User, Address = self.classes.User, self.classes.Address |
no test coverage detected