| 1212 | |
| 1213 | def test_prepared_from_session(self, httpbin): |
| 1214 | class DummyAuth(requests.auth.AuthBase): |
| 1215 | def __call__(self, r): |
| 1216 | r.headers["Dummy-Auth-Test"] = "dummy-auth-test-ok" |
| 1217 | return r |
| 1218 | |
| 1219 | req = requests.Request("GET", httpbin("headers")) |
| 1220 | assert not req.auth |
no outgoing calls
searching dependent graphs…