(self)
| 267 | ) |
| 268 | |
| 269 | def test_result_map_use_labels(self): |
| 270 | table1 = self.table1 |
| 271 | s = ( |
| 272 | table1.select() |
| 273 | .set_label_style(LABEL_STYLE_TABLENAME_PLUS_COL) |
| 274 | .order_by(table1.c.this_is_the_primarykey_column) |
| 275 | ) |
| 276 | |
| 277 | self._assert_labeled_table1_select(s) |
| 278 | |
| 279 | def test_result_map_limit(self): |
| 280 | table1 = self.table1 |
nothing calls this directly
no test coverage detected