getAttachmentMetaFromREST unmarhsals the response body from GET /ks/doc/att?meta=true
(t *testing.T, responseBody []byte)
| 3036 | |
| 3037 | // getAttachmentMetaFromREST unmarhsals the response body from GET /ks/doc/att?meta=true |
| 3038 | func getAttachmentMetaFromREST(t *testing.T, responseBody []byte) attachmentMetaResponse { |
| 3039 | var resp attachmentMetaResponse |
| 3040 | require.NoError(t, base.JSONUnmarshal(responseBody, &resp)) |
| 3041 | return resp |
| 3042 | } |
no test coverage detected