add more merge cases
This commit is contained in:
parent
f7a3bdc6db
commit
b21b4d1608
2 changed files with 8 additions and 3 deletions
|
|
@ -116,7 +116,12 @@ def test_blueprint_app_error_handling(app, client):
|
|||
|
||||
|
||||
@pytest.mark.parametrize(('prefix', 'rule', 'url'), (
|
||||
('', '/', '/'),
|
||||
('/', '', '/'),
|
||||
('/', '/', '/'),
|
||||
('/foo', '', '/foo'),
|
||||
('/foo/', '', '/foo/'),
|
||||
('', '/bar', '/bar'),
|
||||
('/foo/', '/bar', '/foo/bar'),
|
||||
('/foo/', 'bar', '/foo/bar'),
|
||||
('/foo', '/bar', '/foo/bar'),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue