(self)
| 120 | """Test charset and collation connection options.""" |
| 121 | |
| 122 | def setUp(self): |
| 123 | # Initialize a connection with a non-default character set and |
| 124 | # collation. |
| 125 | self.conn = connection_factory( |
| 126 | charset="utf8mb4", |
| 127 | collation="utf8mb4_esperanto_ci", |
| 128 | ) |
| 129 | |
| 130 | def tearDown(self): |
| 131 | self.conn.close() |
nothing calls this directly
no test coverage detected