(self, outerjoin_mapping)
| 1253 | ) |
| 1254 | |
| 1255 | def test_get_fully_null_composite_pk(self, outerjoin_mapping): |
| 1256 | UserThing = outerjoin_mapping |
| 1257 | |
| 1258 | s = fixture_session() |
| 1259 | |
| 1260 | assert_warns_message( |
| 1261 | sa_exc.SAWarning, |
| 1262 | r"fully NULL primary key identity cannot load any object. " |
| 1263 | "This condition may raise an error in a future release.", |
| 1264 | s.get, |
| 1265 | UserThing, |
| 1266 | (None, None), |
| 1267 | ) |
| 1268 | |
| 1269 | def test_unique_param_names(self): |
| 1270 | users = self.tables.users |
nothing calls this directly
no test coverage detected