Fix blueprint route for ""

This commit is contained in:
Hsiaoming Yang 2018-05-01 14:35:55 +09:00
parent 3cb636fbe1
commit 61eea98d17
2 changed files with 5 additions and 1 deletions

View file

@ -116,6 +116,7 @@ def test_blueprint_app_error_handling(app, client):
@pytest.mark.parametrize(('prefix', 'rule', 'url'), (
('/foo', '', '/foo'),
('/foo/', '/bar', '/foo/bar'),
('/foo/', 'bar', '/foo/bar'),
('/foo', '/bar', '/foo/bar'),