(self)
| 48 | ) |
| 49 | |
| 50 | def test_string_w_quotes(self): |
| 51 | m = MetaData() |
| 52 | t = Table("t", m, Column("x", Integer, server_default="5'6")) |
| 53 | self.assert_compile( |
| 54 | CreateTable(t), "CREATE TABLE t (x INTEGER DEFAULT '5''6')" |
| 55 | ) |
| 56 | |
| 57 | def test_text(self): |
| 58 | m = MetaData() |
nothing calls this directly
no test coverage detected