def test_setting_and_getting_message():
    res = test_app.post('/message')
    if PY2:
        res = test_app.get('/message')
    else:
        msg = test_app.cookies['_flash']
        res = test_app.get(
            '/message', headers=(('Cookie', '_flash=%s;' % msg),))
    assert res.ubody == 'Come on!'
def test_getting_empty_message():
    res = test_app.get('/message')
    assert res.ubody == ''