(self)
| 6157 | |
| 6158 | class StringifySpecialTest(fixtures.TestBase): |
| 6159 | def test_basic(self): |
| 6160 | stmt = select(table1).where(table1.c.myid == 10) |
| 6161 | eq_ignore_whitespace( |
| 6162 | str(stmt), |
| 6163 | "SELECT mytable.myid, mytable.name, mytable.description " |
| 6164 | "FROM mytable WHERE mytable.myid = :myid_1", |
| 6165 | ) |
| 6166 | |
| 6167 | def test_unnamed_column(self): |
| 6168 | stmt = Column(Integer) == 5 |
nothing calls this directly
no test coverage detected