mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-05 06:26:21 +00:00
15 lines
282 B
Ruby
15 lines
282 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:media_attachment) do
|
|
account { Fabricate.build(:account) }
|
|
|
|
file do |attrs|
|
|
case attrs[:type]
|
|
when :gifv, :video
|
|
attachment_fixture('attachment.webm')
|
|
else
|
|
attachment_fixture('attachment.jpg')
|
|
end
|
|
end
|
|
end
|