Browse Source

Testing URL generation

pull/1638/head
Armin Ronacher 15 years ago
parent
commit
4affedec35
  1. 8
      flask_tests.py

8
flask_tests.py

@ -69,6 +69,14 @@ class ContextTestCase(unittest.TestCase):
assert c.post('/set', data={'value': '42'}).data == 'value set'
assert c.get('/get').data == '42'
def test_url_generation(self):
app = flask.Flask(__name__)
@app.route('/hello/<name>', methods=['POST'])
def hello():
pass
with app.test_request_context():
assert flask.url_for('hello', name='test x') == '/hello/test%20x'
if __name__ == '__main__':
unittest.main()

Loading…
Cancel
Save