(self)
| 6165 | ) |
| 6166 | |
| 6167 | def test_unnamed_column(self): |
| 6168 | stmt = Column(Integer) == 5 |
| 6169 | eq_ignore_whitespace(str(stmt), '"<name unknown>" = :param_1') |
| 6170 | |
| 6171 | def test_empty_insert(self): |
| 6172 | stmt = table1.insert().values() |
nothing calls this directly
no test coverage detected