Browse Source

Pass keyword args from `test_client` method to client class constructor

pull/992/merge
Matt Wright 11 years ago committed by Markus Unterwaditzer
parent
commit
fed6fd32d8
  1. 4
      flask/app.py

4
flask/app.py

@ -821,7 +821,7 @@ class Flask(_PackageBoundObject):
# without reloader and that stuff from an interactive shell.
self._got_first_request = False
def test_client(self, use_cookies=True):
def test_client(self, use_cookies=True, **kwargs):
"""Creates a test client for this application. For information
about unit testing head over to :ref:`testing`.
@ -857,7 +857,7 @@ class Flask(_PackageBoundObject):
cls = self.test_client_class
if cls is None:
from flask.testing import FlaskClient as cls
return cls(self, self.response_class, use_cookies=use_cookies)
return cls(self, self.response_class, use_cookies=use_cookies, **kwargs)
def open_session(self, request):
"""Creates or opens a new session. Default implementation stores all

Loading…
Cancel
Save