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