Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mitsuhiko/flask
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Aug 5, 2013
2 parents 9e5ab21 + a2bc61b commit 1b08d52
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions flask/testsuite/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,33 @@ def index():
c = app.test_client()
rv = c.get('/')
lines = [x.strip() for x in rv.data.strip().decode('utf-8').splitlines()]
self.assert_equal(lines, [
sorted_by_str = [
'{',
'"values": {',
'"0": "foo",',
'"1": "foo",',
'"10": "foo",',
'"11": "foo",',
'"12": "foo",',
'"13": "foo",',
'"14": "foo",',
'"15": "foo",',
'"16": "foo",',
'"17": "foo",',
'"18": "foo",',
'"19": "foo",',
'"2": "foo",',
'"3": "foo",',
'"4": "foo",',
'"5": "foo",',
'"6": "foo",',
'"7": "foo",',
'"8": "foo",',
'"9": "foo"',
'}',
'}'
]
sorted_by_int = [
'{',
'"values": {',
'"0": "foo",',
Expand All @@ -198,8 +224,12 @@ def index():
'"19": "foo"',
'}',
'}'
])
]

try:
self.assert_equal(lines, sorted_by_int)
except AssertionError:
self.assert_equal(lines, sorted_by_str)

class SendfileTestCase(FlaskTestCase):

Expand Down

0 comments on commit 1b08d52

Please sign in to comment.