2023-02-21 18:55:31 -06:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-01-19 15:37:27 -06:00
|
|
|
Fabricator(:preview_card) do
|
|
|
|
url { Faker::Internet.url }
|
|
|
|
title { Faker::Lorem.sentence }
|
|
|
|
description { Faker::Lorem.paragraph }
|
|
|
|
type 'link'
|
2022-09-26 20:08:19 -05:00
|
|
|
image { attachment_fixture('attachment.jpg') }
|
2022-01-19 15:37:27 -06:00
|
|
|
end
|