Additional test cases

Co-authored-by: Min RK <benjaminrk@gmail.com>
This commit is contained in:
Simon Li
2025-03-28 10:08:43 +00:00
committed by GitHub
parent 15efe6b7c1
commit ba25ee9e9c

View File

@@ -109,7 +109,13 @@ async def test_tornado_coroutines():
(("/base/", ""), "/base/"),
(("/base", "abc", "def"), "/base/abc/def"),
(("/base/", "/abc/", "/def/"), "/base/abc/def/"),
(("/base", "", "/", ""), "/base/"),
((""), ""),
(("", ""), ""),
(("", "part", ""), "part"),
(("", "/part"), "part"),
(("", "part", "", "after"), "part/after"),
(("", "part", "", "after/", "", ""), "part/after/"),
(("abc", "def"), "abc/def"),
],
)