2023-02-22 09:55:31 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-06 00:46:36 +09:00
|
|
|
Fabricator(:media_attachment) do
|
2023-06-11 01:29:01 +09:00
|
|
|
account { Fabricate.build(:account) }
|
2020-01-24 05:40:03 +09:00
|
|
|
|
2017-06-21 03:40:45 +09:00
|
|
|
file do |attrs|
|
2020-01-24 05:40:03 +09:00
|
|
|
case attrs[:type]
|
|
|
|
when :gifv, :video
|
|
|
|
attachment_fixture('attachment.webm')
|
|
|
|
else
|
|
|
|
attachment_fixture('attachment.jpg')
|
|
|
|
end
|
2017-06-21 03:40:45 +09:00
|
|
|
end
|
2016-09-06 00:46:36 +09:00
|
|
|
end
|