()
| 114 | |
| 115 | |
| 116 | def test_verify_false_disallowed(): |
| 117 | with pytest.raises(ValueError) as excinfo: |
| 118 | HttpStorage(url='http://example.com', verify=False) |
| 119 | |
| 120 | assert 'forbidden' in str(excinfo.value).lower() |
| 121 | assert 'consider setting verify_fingerprint' in str(excinfo.value).lower() |
nothing calls this directly
no test coverage detected