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




                                           
     
   
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