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