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