about summary refs log tree commit diff
path: root/spec/fabricators/preview_card_fabricator.rb
blob: 99b5edc435702003c624ec35755822ad779674bd (plain) (blame)
1
2
3
4
5
6
7
Fabricator(:preview_card) do
  url { Faker::Internet.url }
  title { Faker::Lorem.sentence }
  description { Faker::Lorem.paragraph }
  type 'link'
  image { attachment_fixture('attachment.jpg') }
end