(self)
| 139 | self.realtestSocketAuth() |
| 140 | |
| 141 | def realtestSocketAuth(self): |
| 142 | with TempUser( |
| 143 | self.connect().cursor(), |
| 144 | TestAuthentication.osuser + "@localhost", |
| 145 | self.databases[0]["database"], |
| 146 | self.socket_plugin_name, |
| 147 | ): |
| 148 | pymysql.connect(user=TestAuthentication.osuser, **self.db) |
| 149 | |
| 150 | class Dialog: |
| 151 | fail = False |
no test coverage detected