(self)
| 1055 | |
| 1056 | @threading_helper.reap_threads |
| 1057 | def test_simple_with_statement(self): |
| 1058 | # simplest call |
| 1059 | with self.reaped_server(SimpleIMAPHandler) as server: |
| 1060 | with self.imap_class(*server.server_address): |
| 1061 | pass |
| 1062 | |
| 1063 | @threading_helper.reap_threads |
| 1064 | def test_with_statement(self): |
nothing calls this directly
no test coverage detected