mirror of https://github.com/mitsuhiko/flask.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
41 lines
1.0 KiB
# -*- 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 pytest |
|
|
|
import flask |
|
|
|
|
|
class TestRequestDeprecation(object): |
|
def test_request_json(self, recwarn, app, client): |
|
"""Request.json is deprecated""" |
|
app.testing = True |
|
|
|
@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) |
|
|
|
def test_request_module(self, recwarn, app, client): |
|
"""Request.module is deprecated""" |
|
app.testing = True |
|
|
|
@app.route('/') |
|
def index(): |
|
assert flask.request.module is None |
|
return 'OK' |
|
|
|
client.get('/') |
|
recwarn.pop(DeprecationWarning)
|
|
|