This test requires MySQL >= 5.5
(self)
| 439 | |
| 440 | class TestConnection(base.PyMySQLTestCase): |
| 441 | def test_utf8mb4(self): |
| 442 | """This test requires MySQL >= 5.5""" |
| 443 | arg = self.databases[0].copy() |
| 444 | arg["charset"] = "utf8mb4" |
| 445 | pymysql.connect(**arg) |
| 446 | |
| 447 | def test_set_character_set(self): |
| 448 | con = self.connect() |