(self)
| 397 | self.assertIsNone(self.client.file) |
| 398 | |
| 399 | def test_control_characters(self): |
| 400 | for c0 in control_characters_c0(): |
| 401 | with self.assertRaises(ValueError): |
| 402 | self.client.user(f'user{c0}') |
| 403 | with self.assertRaises(ValueError): |
| 404 | self.client.pass_(f'{c0}pass') |
| 405 | |
| 406 | @requires_ssl |
| 407 | def test_stls_capa(self): |
nothing calls this directly
no test coverage detected