diff options
Diffstat (limited to 'mediagoblin/tests/test_pluginapi.py')
-rw-r--r-- | mediagoblin/tests/test_pluginapi.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mediagoblin/tests/test_pluginapi.py b/mediagoblin/tests/test_pluginapi.py index 74a00ce0..73ad235e 100644 --- a/mediagoblin/tests/test_pluginapi.py +++ b/mediagoblin/tests/test_pluginapi.py @@ -348,11 +348,13 @@ def test_modify_context(context_modified_app): specific thing: in yer specificpage global thing: globally appended! -something: orother""" +something: orother +doubleme: happyhappy""" # General test, should have global context variable only result = context_modified_app.get("/modify_context/") assert result.body.strip() == """General page! global thing: globally appended! -lol: cats""" +lol: cats +doubleme: joyjoy""" |