(self)
| 192 | assert fires(code, "SSH001"), "SSH001 must fire: AutoAddPolicy()" |
| 193 | |
| 194 | def test_reject_policy_safe(self): |
| 195 | code = "client.set_missing_host_key_policy(paramiko.RejectPolicy())" |
| 196 | assert not_fires(code, "SSH001"), "SSH001 must NOT fire for RejectPolicy" |
| 197 | |
| 198 | |
| 199 | # ============================================================ |
nothing calls this directly
no test coverage detected