(self)
| 125 | ) |
| 126 | |
| 127 | def test_gen_path_attr_entity(self): |
| 128 | User = self.classes.User |
| 129 | Address = self.classes.Address |
| 130 | |
| 131 | ll = Load(User) |
| 132 | |
| 133 | eq_( |
| 134 | strategy_options._AttributeStrategyLoad.create( |
| 135 | ll.path, |
| 136 | User.addresses, |
| 137 | ("strategy", True), |
| 138 | "relationship", |
| 139 | {}, |
| 140 | True, |
| 141 | ).path, |
| 142 | self._make_path_registry([User, "addresses", Address]), |
| 143 | ) |
| 144 | |
| 145 | def test_gen_path_attr_column(self): |
| 146 | User = self.classes.User |
nothing calls this directly
no test coverage detected