2016-09-06 01:46:36 +10:00
|
|
|
Fabricator(:media_attachment) do
|
2017-04-08 02:50:43 +10:00
|
|
|
account
|
2017-06-21 04:40:45 +10:00
|
|
|
file do |attrs|
|
|
|
|
[
|
|
|
|
case attrs[:type]
|
|
|
|
when :gifv
|
|
|
|
attachment_fixture ['attachment.gif', 'attachment.webm'].sample
|
|
|
|
when :image
|
|
|
|
attachment_fixture 'attachment.jpg'
|
|
|
|
when nil
|
|
|
|
attachment_fixture ['attachment.gif', 'attachment.jpg', 'attachment.webm'].sample
|
|
|
|
end,
|
|
|
|
nil
|
|
|
|
].sample
|
|
|
|
end
|
2016-09-06 01:46:36 +10:00
|
|
|
end
|