about summary refs log tree commit diff
path: root/spec/fabricators/media_attachment_fabricator.rb
blob: 651927c2dd97f8a790e4dd09a5578a355323b46e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
Fabricator(:media_attachment) do
  account

  file do |attrs|
    case attrs[:type]
    when :gifv, :video
      attachment_fixture('attachment.webm')
    else
      attachment_fixture('attachment.jpg')
    end
  end
end