(self)
| 375 | cm.exception.close() |
| 376 | |
| 377 | def test_proxy_qop_auth_works(self): |
| 378 | self.proxy_digest_handler.add_password(self.REALM, self.URL, |
| 379 | self.USER, self.PASSWD) |
| 380 | self.digest_auth_handler.set_qop("auth") |
| 381 | with self.opener.open(self.URL) as result: |
| 382 | while result.read(): |
| 383 | pass |
| 384 | |
| 385 | def test_proxy_qop_auth_int_works_or_throws_urlerror(self): |
| 386 | self.proxy_digest_handler.add_password(self.REALM, self.URL, |
nothing calls this directly
no test coverage detected