forked from orbit-oss/flask
Revert "Adds simplejson as a testing target." (#1865)
This commit is contained in:
parent
a228a3b2cf
commit
024fbe5a60
2 changed files with 1 additions and 10 deletions
|
|
@ -19,10 +19,6 @@ from werkzeug.exceptions import BadRequest
|
|||
from werkzeug.http import parse_cache_control_header, parse_options_header
|
||||
from werkzeug.http import http_date
|
||||
from flask._compat import StringIO, text_type
|
||||
try:
|
||||
import simplejson
|
||||
except ImportError:
|
||||
import json as simplejson
|
||||
|
||||
|
||||
def has_encoding(name):
|
||||
|
|
@ -118,10 +114,6 @@ class TestJSON(object):
|
|||
assert rv.mimetype == 'application/json'
|
||||
assert flask.json.loads(rv.data) == d
|
||||
|
||||
def test_simplejson_does_not_escape_slashes(self):
|
||||
"""Test that \\/ is no longer standard behavior."""
|
||||
assert '\\/' not in simplejson.dumps('/')
|
||||
|
||||
def test_jsonify_dicts(self):
|
||||
"""Test jsonify with dicts and kwargs unpacking."""
|
||||
d = dict(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue