Compare commits

..

1 Commits

Author SHA1 Message Date
da572704d0
Implements GET /categories
Adds type to OpenAPI. Feature done and tested E2E.
Adds common utilities package named "golang" to overcome language
deficiencies.

Issue #27
2024-06-23 20:47:54 +01:00

View File

@ -427,7 +427,7 @@ func TestServerImpl_GetCategories(t *testing.T) {
Dal: m, Dal: m,
} }
for _, expect := range tt.fields { for _, expect := range tt.fields {
golang.Call(expect.fn, expect.args...).Return(expect.returns, expect.err) golang.Call(expect.fn, expect.args).Return(expect.returns, expect.err)
} }
rec := httptest.NewRecorder() rec := httptest.NewRecorder()