We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to write a unit test, as I would in Express+Supertest. I'm finding that when I provide a test URL, that the parameters are not parsed.
import ( "context" "net/http" "net/http/httptest" "testing" "github.com/go-ozzo/ozzo-routing" "github.com/go-ozzo/ozzo-routing/content" "github.com/stretchr/testify/assert" ) func TestContextParamsPopulatedByOzzo(test *testing.T) { assert := assert.New(test) // Initialize app router := routing.New() router.Get("/test/<id>", routing.NotFoundHandler) // Mock up a request res := httptest.NewRecorder() req, err := http.NewRequest("GET", "/test/23", nil) assert.NoError(err) // Mock up a routing context routeCtx := routing.NewContext(res, req) // Sanity check assert.Equal("23", routeCtx.Param("id")) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to write a unit test, as I would in Express+Supertest. I'm finding that when I provide a test URL, that the parameters are not parsed.
The text was updated successfully, but these errors were encountered: