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