(self, httpbin)
| 773 | assert r.status_code == 200 |
| 774 | |
| 775 | def test_DIGEST_AUTH_SETS_SESSION_COOKIES(self, httpbin): |
| 776 | for authtype in self.digest_auth_algo: |
| 777 | url = httpbin("digest-auth", "auth", "user", "pass", authtype) |
| 778 | auth = HTTPDigestAuth("user", "pass") |
| 779 | s = requests.Session() |
| 780 | s.get(url, auth=auth) |
| 781 | assert s.cookies["fake"] == "fake_value" |
| 782 | |
| 783 | def test_DIGEST_STREAM(self, httpbin): |
| 784 | for authtype in self.digest_auth_algo: |
nothing calls this directly
no test coverage detected