From 58bae83558479ccdda4cc22b7f2d237cf100b0bb Mon Sep 17 00:00:00 2001 From: Johnny Date: Wed, 17 May 2017 11:15:45 +0200 Subject: [PATCH] Add a regression test. --- tests/test_requests.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/test_requests.py b/tests/test_requests.py index f77fd90f..06e2b7ae 100644 --- a/tests/test_requests.py +++ b/tests/test_requests.py @@ -182,6 +182,14 @@ def test_token(): assert request.token == token + # no Authorization headers + headers = { + 'content-type': 'application/json' + } + + request, response = app.test_client.get('/', headers=headers) + + assert request.token is None # ------------------------------------------------------------ #