(self)
| 310 | driver = "pymysql" |
| 311 | |
| 312 | def setUp(self): |
| 313 | self.db = setup_database(self.dbname, driver=self.driver) |
| 314 | # In mysql, transactions are supported only with INNODB engine. |
| 315 | self.db.query("CREATE TABLE person (name text, email text) ENGINE=INNODB") |
| 316 | |
| 317 | def testBoolean(self): |
| 318 | # boolean datatype is not supported in MySQL (at least until v5.0) |
nothing calls this directly
no test coverage detected