(self)
| 1343 | eq_(attr[key].local_opts, expected) |
| 1344 | |
| 1345 | def test_single_opt_only(self): |
| 1346 | User = self.classes.User |
| 1347 | |
| 1348 | opt = strategy_options.Load(User).some_col_opt_only( |
| 1349 | User.name, {"foo": "bar"} |
| 1350 | ) |
| 1351 | self._assert_attrs([opt], {"foo": "bar"}) |
| 1352 | |
| 1353 | def test_bound_multiple_opt_only(self): |
| 1354 | User = self.classes.User |
nothing calls this directly
no test coverage detected