(self)
| 1351 | self._assert_attrs([opt], {"foo": "bar"}) |
| 1352 | |
| 1353 | def test_bound_multiple_opt_only(self): |
| 1354 | User = self.classes.User |
| 1355 | opts = [ |
| 1356 | Load(User) |
| 1357 | .some_col_opt_only(User.name, {"foo": "bar"}) |
| 1358 | .some_col_opt_only(User.name, {"bat": "hoho"}) |
| 1359 | ] |
| 1360 | self._assert_attrs(opts, {"foo": "bar", "bat": "hoho"}) |
| 1361 | |
| 1362 | def test_bound_strat_opt_recvs_from_optonly(self): |
| 1363 | User = self.classes.User |
nothing calls this directly
no test coverage detected