add: test cases

This commit is contained in:
Prakhar Gurunani 2023-12-22 18:58:11 +05:30
parent 802125c83d
commit c030c4546a

View File

@ -417,6 +417,9 @@ func TestTreeWildcardConflict(t *testing.T) {
{"/user_:name", false},
{"/id:id", false},
{"/id/:id", false},
{"/static/*file", false},
{"/static/", true},
{"/static/", false},
}
testRoutes(t, routes)
}