GetAttachmentsFrom1xBody returns the attachment data when it returned from Get1xBody functions, where the data is already db.Body.
(t *testing.T, body Body)
| 996 | |
| 997 | // GetAttachmentsFrom1xBody returns the attachment data when it returned from Get1xBody functions, where the data is already db.Body. |
| 998 | func GetAttachmentsFrom1xBody(t *testing.T, body Body) AttachmentMap { |
| 999 | return GetAttachmentsFromInlineBody(t, base.MustJSONMarshal(t, body)) |
| 1000 | } |
| 1001 | |
| 1002 | func GetChangeEntryCV(t *testing.T, entry *ChangeEntry) Version { |
| 1003 | require.NotNil(t, entry.Changes) |