about summary refs log tree commit diff
path: root/router_test.go (unfollow)
Commit message (Expand)AuthorFilesLines
2013-05-06Update the GetRouteList test.Franck Cuny1-4/+0
2013-05-06rename mooh to path routerFranck Cuny1-8/+6
2013-04-29Add a one line documentation for the public methods in the routerFranck Cuny1-0/+11
2013-04-28gofmtFranck Cuny1-3/+3
2013-04-28Generate route to respond with 405 when the HTTP method is not existing.Franck Cuny2-3/+41
2013-04-28By calling AddOptions on the router, a route for OPTIONS is addedFranck Cuny3-3/+33
2013-04-28`BuildRouter` return a reference to itself.Franck Cuny2-3/+4
2013-04-28Add a method to get the HTTP methods supported for a path.Franck Cuny2-3/+37
2013-04-28Add a few more methods for future introspection to the Router.Franck Cuny2-4/+101
2013-04-28Use `knownPaths` to return the list of paths in GetRouteList.Franck Cuny1-3/+5
2013-04-28Update README with correct placeholders in URL.Franck Cuny1-3/+3
2013-04-27Placeholder in URL use the {\w+} form, not :\w+Franck Cuny5-23/+23
2013-04-27Better error message when adding twice the same route.Franck Cuny1-1/+1
2013-04-27