(self)
| 120 | ) |
| 121 | |
| 122 | def test_same_named_col_clauselist(self): |
| 123 | Data, Other = self.classes("Data", "Other") |
| 124 | bundle = Bundle("pk", Data.id, Other.id) |
| 125 | |
| 126 | self.assert_compile(ClauseList(Data.id, Other.id), "data.id, other.id") |
| 127 | self.assert_compile(bundle.__clause_element__(), "data.id, other.id") |
| 128 | |
| 129 | def test_dict_same_named_col_clauselist(self): |
| 130 | Data, Other = self.classes("Data", "Other") |
nothing calls this directly
no test coverage detected