(self)
| 889 | eq_(cc._all_columns, [c1, c2]) |
| 890 | |
| 891 | def test_separate_key_get(self): |
| 892 | c1, c2 = sql.column("col1"), sql.column("col2") |
| 893 | cc = self._column_collection([("kcol1", c1), ("kcol2", c2)]) |
| 894 | is_(cc.kcol1, c1) |
| 895 | is_(cc.kcol2, c2) |
| 896 | |
| 897 | def test_separate_key_in(self): |
| 898 | cc = self._column_collection( |
nothing calls this directly
no test coverage detected