Merge pull request #2807 from eso31/master

Test added for _AppCtxGlobals __repr__ method
This commit is contained in:
David Lord 2018-05-29 09:42:43 -07:00 committed by GitHub
commit 8080ead523
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -159,6 +159,8 @@ def test_app_ctx_globals_methods(app, app_ctx):
assert flask.g.pop('bar', 'more cake') == 'more cake'
# __iter__
assert list(flask.g) == ['foo']
#__repr__
assert repr(flask.g) == "<flask.g of 'flask_test'>"
def test_custom_app_ctx_globals_class(app):