(self)
| 178 | assert not_fires(code, "TLS001"), "TLS001 must NOT fire for verify=True" |
| 179 | |
| 180 | def test_verify_capath_safe(self): |
| 181 | code = "resp = requests.get(url, verify='/etc/ssl/certs/ca-bundle.crt')" |
| 182 | assert not_fires(code, "TLS001"), "TLS001 must NOT fire for verify=CA path" |
| 183 | |
| 184 | |
| 185 | # ============================================================ |
nothing calls this directly
no test coverage detected