(path)
| 649 | @ignore_deprecations |
| 650 | def test_connect_with_ca_bundle(self): |
| 651 | def remove(path): |
| 652 | try: |
| 653 | os.remove(path) |
| 654 | except OSError: |
| 655 | pass |
| 656 | |
| 657 | temp_ca_bundle = os.path.join(CERT_PATH, "trusted-ca-bundle.pem") |
| 658 | self.addCleanup(remove, temp_ca_bundle) |
no outgoing calls
no test coverage detected