(self)
| 984 | eq_(cc._all_columns, [c1, c2]) |
| 985 | |
| 986 | def test_separate_key_get(self): |
| 987 | c1, c2 = sql.column("col1"), sql.column("col2") |
| 988 | cc = self._column_collection([("kcol1", c1), ("kcol2", c2)]) |
| 989 | is_(cc.kcol1, c1) |
| 990 | is_(cc.kcol2, c2) |
| 991 | |
| 992 | def test_separate_key_in(self): |
| 993 | cc = self._column_collection( |
nothing calls this directly
no test coverage detected