(path string, args ...any)
| 268 | } |
| 269 | |
| 270 | func (a *testAPI) Post(path string, args ...any) *httptest.ResponseRecorder { |
| 271 | a.tb.Helper() |
| 272 | return a.PostCtx(context.Background(), path, args...) |
| 273 | } |
| 274 | |
| 275 | func (a *testAPI) PostCtx(ctx context.Context, path string, args ...any) *httptest.ResponseRecorder { |
| 276 | a.tb.Helper() |