forked from orbit-oss/flask
un-deprecate request.json
This commit is contained in:
parent
1172728a68
commit
5bc0d15359
3 changed files with 3 additions and 34 deletions
|
|
@ -1,26 +0,0 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
tests.deprecations
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Tests deprecation support. Not used currently.
|
||||
|
||||
:copyright: (c) 2015 by Armin Ronacher.
|
||||
:license: BSD, see LICENSE for more details.
|
||||
"""
|
||||
|
||||
import flask
|
||||
|
||||
|
||||
class TestRequestDeprecation(object):
|
||||
def test_request_json(self, recwarn, app, client):
|
||||
"""Request.json is deprecated"""
|
||||
|
||||
@app.route('/', methods=['POST'])
|
||||
def index():
|
||||
assert flask.request.json == {'spam': 42}
|
||||
print(flask.request.json)
|
||||
return 'OK'
|
||||
|
||||
client.post('/', data='{"spam": 42}', content_type='application/json')
|
||||
recwarn.pop(DeprecationWarning)
|
||||
Loading…
Add table
Add a link
Reference in a new issue