donphan/spec/fabricators/media_attachment_fabricator.rb

15 lines
282 B
Ruby
Raw Normal View History

2023-07-06 11:23:07 +01:00
# frozen_string_literal: true
2016-09-05 16:46:36 +01:00
Fabricator(:media_attachment) do
2023-07-06 11:23:07 +01:00
account { Fabricate.build(:account) }
file do |attrs|
case attrs[:type]
when :gifv, :video
attachment_fixture('attachment.webm')
else
attachment_fixture('attachment.jpg')
end
end
2016-09-05 16:46:36 +01:00
end