How do I send cookies with request when testing Flask applications through nosetests? How do I send cookies with request when testing Flask applications through nosetests? flask flask

How do I send cookies with request when testing Flask applications through nosetests?


You can also use self.app_client.set_cookie(domain, cookie_name, cookie_value) before making the request.


God I feel so stupid, it was a simple switch to Cookie from Get-Cookie.I was 100% sure I had tried that alot before but I guess when something else was wrong. Either way I'll mark this as correct but feel free to remove this question if necessary. =)