(self)
| 55 | ) |
| 56 | |
| 57 | def test_text(self): |
| 58 | m = MetaData() |
| 59 | t = Table("t", m, Column("x", Integer, server_default=text("5 + 8"))) |
| 60 | self.assert_compile( |
| 61 | CreateTable(t), "CREATE TABLE t (x INTEGER DEFAULT 5 + 8)" |
| 62 | ) |
| 63 | |
| 64 | def test_text_w_quotes(self): |
| 65 | m = MetaData() |
nothing calls this directly
no test coverage detected