diff options
Diffstat (limited to 'testrig/testmodels.go')
-rw-r--r-- | testrig/testmodels.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testrig/testmodels.go b/testrig/testmodels.go index 916b38612..b38494642 100644 --- a/testrig/testmodels.go +++ b/testrig/testmodels.go @@ -1954,6 +1954,11 @@ func NewTestFediAttachments(relativePath string) map[string]RemoteAttachmentFile panic(err) } + peglinBytes, err := os.ReadFile(fmt.Sprintf("%s/peglin.gif", relativePath)) + if err != nil { + panic(err) + } + return map[string]RemoteAttachmentFile{ "https://s3-us-west-2.amazonaws.com/plushcity/media_attachments/files/106/867/380/219/163/828/original/88e8758c5f011439.jpg": { Data: beeBytes, @@ -1967,6 +1972,10 @@ func NewTestFediAttachments(relativePath string) map[string]RemoteAttachmentFile Data: massiveFuckingTurnipBytes, ContentType: "image/jpeg", }, + "http://example.org/media/emojis/1781772.gif": { + Data: peglinBytes, + ContentType: "image/gif", + }, } } |